-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
61 lines (57 loc) · 906 Bytes
/
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
import test from 'ava';
import atomizer from '.';
const FIXTURE = {
config: {
module: {
loaders: [
{
rule: {
test: /\.(css|less|s[ac]ss|styl)$/,
loader: 'style-loader',
},
},
],
},
},
env: {
isProd: false,
},
helpers: {
getLoadersByName: config => config.module.loaders,
},
};
test('properly adds itself', t => {
const actual = atomizer(
FIXTURE.config,
FIXTURE.env,
FIXTURE.helpers,
{
configPath: 'foo',
minimize: false,
test: /\.jsx?$/,
},
);
const expected = {
module: {
loaders: [
{
oneOf: [
{
test: /\.(css|less|s[ac]ss|styl)$/,
loader: 'style-loader',
},
{
loader: 'webpack-atomizer-loader',
options: {
configPath: 'foo',
minimize: false,
},
test: /\.jsx?$/,
},
],
},
],
},
};
t.deepEqual(actual, expected);
});