-
-
Notifications
You must be signed in to change notification settings - Fork 608
/
Copy pathapi.test.js
114 lines (88 loc) · 2.39 KB
/
api.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
const api = require('../../src/runtime/api');
describe('api', () => {
beforeAll(() => {
global.btoa = function btoa(str) {
let buffer = null;
if (str instanceof Buffer) {
buffer = str;
} else {
buffer = Buffer.from(str.toString(), 'binary');
}
return buffer.toString('base64');
};
});
afterAll(() => {
global.btoa = null;
});
it('should toString a single module', () => {
const m = api();
m.push([1, 'body { a: 1; }', '']);
expect(m.toString()).toMatchSnapshot();
});
it('should toString multiple modules', () => {
const m = api();
m.push([2, 'body { b: 2; }', '']);
m.push([1, 'body { a: 1; }', '']);
expect(m.toString()).toMatchSnapshot();
});
it('should toString with media query', () => {
const m = api();
m.push([1, 'body { a: 1; }', 'screen']);
expect(m.toString()).toMatchSnapshot();
});
it('should import modules', () => {
const m = api();
const m1 = [1, 'body { a: 1; }', 'screen'];
const m2 = [2, 'body { b: 2; }', ''];
const m3 = [3, 'body { c: 3; }', ''];
const m4 = [4, 'body { d: 4; }', ''];
m.i([m2, m3], '');
m.i([m2], '');
m.i([m2, m4], 'print');
m.push(m1);
expect(m.toString()).toMatchSnapshot();
});
it('should import named modules', () => {
const m = api();
const m1 = ['./module1', 'body { a: 1; }', 'screen'];
const m2 = ['./module2', 'body { b: 2; }', ''];
const m3 = ['./module3', 'body { c: 3; }', ''];
const m4 = ['./module4', 'body { d: 4; }', ''];
m.i([m2, m3], '');
m.i([m2], '');
m.i([m2, m4], 'print');
m.push(m1);
expect(m.toString()).toMatchSnapshot();
});
it('should toString with source mapping', () => {
const m = api(true);
m.push([
1,
'body { a: 1; }',
'',
{
file: 'test.scss',
sources: ['./path/to/test.scss'],
mappings: 'AAAA;',
sourceRoot: 'webpack://',
},
]);
expect(m.toString()).toMatchSnapshot();
});
it('should toString without source mapping if btoa not avalibale', () => {
global.btoa = null;
const m = api(true);
m.push([
1,
'body { a: 1; }',
'',
{
file: 'test.scss',
sources: ['./path/to/test.scss'],
mappings: 'AAAA;',
sourceRoot: 'webpack://',
},
]);
expect(m.toString()).toMatchSnapshot();
});
});