-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.test.js
159 lines (140 loc) · 4.08 KB
/
index.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
const happoStatic = require('.');
beforeEach(() => {
global.window = {};
});
afterEach(() => {
happoStatic.reset();
});
it('#init sets up some globals', () => {
expect(global.window.happo).toBeFalsy();
happoStatic.init();
expect(global.window.happo).toBeTruthy();
expect(typeof global.window.happo.nextExample).toEqual('function');
expect(typeof global.window.happo.init).toEqual('function');
});
describe('when happo.init is called with only option', () => {
it('filters examples to only the single one', async () => {
happoStatic.init();
happoStatic.registerExample({
component: 'Hello',
variant: 'red',
render: () => {
return '<div style="background-color:red">Hello</div>';
},
});
happoStatic.registerExample({
component: 'Hello',
variant: 'blue',
render: () => {
return '<div style="background-color:blue">Hello</div>';
},
});
global.window.happo.init({ only: { component: 'Hello', variant: 'blue' } });
expect(await global.window.happo.nextExample()).toEqual({
component: 'Hello',
variant: 'blue',
});
expect(await global.window.happo.nextExample()).toBeFalsy();
});
});
describe('when happo.init is called with chunk option', () => {
it('filters examples to the right ones', async () => {
happoStatic.init();
happoStatic.registerExample({
component: 'Hello',
variant: 'red',
render: () => {
return '<div style="background-color:red">Hello</div>';
},
});
happoStatic.registerExample({
component: 'Hello',
variant: 'blue',
render: () => {
return '<div style="background-color:blue">Hello</div>';
},
});
happoStatic.registerExample({
component: 'Hello',
variant: 'green',
render: () => {
return '<div style="background-color:green">Hello</div>';
},
});
global.window.happo.init({ chunk: { total: 3, index: 2 } });
expect(await global.window.happo.nextExample()).toEqual({
component: 'Hello',
variant: 'green',
});
expect(await global.window.happo.nextExample()).toBeFalsy();
});
});
it('can iterate over registered examples', async () => {
happoStatic.init();
happoStatic.registerExample({
component: 'Foo',
variant: 'default',
render: () => {},
});
happoStatic.registerExample({
component: 'Foo',
variant: 'bar',
render: () => {},
});
expect(await window.happo.nextExample()).toEqual({
component: 'Foo',
variant: 'default',
});
expect(await window.happo.nextExample()).toEqual({
component: 'Foo',
variant: 'bar',
});
expect(await window.happo.nextExample()).toBeFalsy();
});
it('passes along properties from the example', async () => {
happoStatic.init();
happoStatic.registerExample({
component: 'Foo',
variant: 'default',
waitForContent: 'what?',
render: () => {},
});
expect(await window.happo.nextExample()).toEqual({
component: 'Foo',
variant: 'default',
waitForContent: 'what?',
});
expect(await window.happo.nextExample()).toBeFalsy();
});
it('#registerExample validates input', () => {
expect(() =>
happoStatic.registerExample({ component: 'Foo', variant: 'Bar' }),
).toThrow(/Missing `render` property/);
expect(() =>
happoStatic.registerExample({ variant: 'Bar', render: () => {} }),
).toThrow(/Missing `component` property/);
expect(() =>
happoStatic.registerExample({ component: 'Bar', render: () => {} }),
).toThrow(/Missing `variant` property/);
expect(() =>
happoStatic.registerExample({
component: 'Bar',
variant: 'foo',
render: true,
}),
).toThrow(/Property `render` must be a function. Got "boolean"./);
expect(() =>
happoStatic.registerExample({
component: 123,
variant: 'foo',
render: true,
}),
).toThrow(/Property `component` must be a string. Got "number"./);
expect(() =>
happoStatic.registerExample({
component: '123',
variant: () => {},
render: true,
}),
).toThrow(/Property `variant` must be a string. Got "function"./);
});