@webex/internal-plugin-scheduler 2.59.2 → 2.59.3-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,57 +1,57 @@
1
- import {assert} from '@webex/test-helper-chai';
2
- import MockWebex from '@webex/test-helper-mock-webex';
3
-
4
- import Scheduler from '@webex/internal-plugin-scheduler';
5
-
6
- /**
7
- * Unit tests are not used against services.
8
- */
9
- describe('plugin-scheduler', () => {
10
- describe('Scheduler', () => {
11
- let webex;
12
- let scheduler;
13
-
14
- beforeEach(() => {
15
- webex = new MockWebex({
16
- children: {
17
- scheduler: Scheduler,
18
- },
19
- });
20
-
21
- scheduler = webex.internal.scheduler;
22
- });
23
-
24
- /**
25
- * Any expected property assignments to this scope.
26
- */
27
- describe('properties', () => {
28
- describe('request', () => {
29
- it('should be mounted', () => {
30
- assert.exists(scheduler.request);
31
- });
32
- });
33
-
34
- describe('logger', () => {
35
- it('should be mounted', () => {
36
- assert.exists(scheduler.logger);
37
- });
38
- });
39
-
40
- // TODO - Test additional properties.
41
- });
42
-
43
- /**
44
- * Any expected event workflows assigned to this scope.
45
- */
46
- describe('events', () => {
47
- // TODO - Add event testing.
48
- });
49
-
50
- /**
51
- * Any methods assigned to this scope.
52
- */
53
- describe('methods', () => {
54
- // TODO - Add method testing.
55
- });
56
- });
57
- });
1
+ import {assert} from '@webex/test-helper-chai';
2
+ import MockWebex from '@webex/test-helper-mock-webex';
3
+
4
+ import Scheduler from '@webex/internal-plugin-scheduler';
5
+
6
+ /**
7
+ * Unit tests are not used against services.
8
+ */
9
+ describe('plugin-scheduler', () => {
10
+ describe('Scheduler', () => {
11
+ let webex;
12
+ let scheduler;
13
+
14
+ beforeEach(() => {
15
+ webex = new MockWebex({
16
+ children: {
17
+ scheduler: Scheduler,
18
+ },
19
+ });
20
+
21
+ scheduler = webex.internal.scheduler;
22
+ });
23
+
24
+ /**
25
+ * Any expected property assignments to this scope.
26
+ */
27
+ describe('properties', () => {
28
+ describe('request', () => {
29
+ it('should be mounted', () => {
30
+ assert.exists(scheduler.request);
31
+ });
32
+ });
33
+
34
+ describe('logger', () => {
35
+ it('should be mounted', () => {
36
+ assert.exists(scheduler.logger);
37
+ });
38
+ });
39
+
40
+ // TODO - Test additional properties.
41
+ });
42
+
43
+ /**
44
+ * Any expected event workflows assigned to this scope.
45
+ */
46
+ describe('events', () => {
47
+ // TODO - Add event testing.
48
+ });
49
+
50
+ /**
51
+ * Any methods assigned to this scope.
52
+ */
53
+ describe('methods', () => {
54
+ // TODO - Add method testing.
55
+ });
56
+ });
57
+ });