-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathjson5.js
62 lines (58 loc) · 1.45 KB
/
json5.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
import path from 'path'
import test from 'ava'
import { expect } from 'chai'
import compiler from './helpers/compiler'
const resolveRelative = path.resolve.bind(null, __dirname)
function createCompiler({ minimize }) {
return compiler({
context: resolveRelative('fixtures/json5'),
entry: './component.mina',
output: {
filename: 'component.js',
},
module: {
rules: [
{
test: /\.mina$/,
use: {
loader: require.resolve('..'),
options: {
minimize,
loaders: {
script: 'babel-loader',
},
},
},
},
],
},
})
}
test('use json5 to parse config', async t => {
const { compile, mfs } = createCompiler({ minimize: false })
await compile()
const got = JSON.parse(mfs.readFileSync('/component.json', 'utf-8'))
const expected = {
component: true,
}
t.deepEqual(got, expected)
t.deepEqual(
mfs.readFileSync('/component.json', 'utf-8'),
JSON.stringify(expected, null, 2)
)
t.pass()
})
test('use json5 to parse config with minimize', async t => {
const { compile, mfs } = createCompiler({ minimize: true })
await compile()
const got = JSON.parse(mfs.readFileSync('/component.json', 'utf-8'))
const expected = {
component: true,
}
t.deepEqual(got, expected)
t.deepEqual(
mfs.readFileSync('/component.json', 'utf-8'),
JSON.stringify(expected)
)
t.pass()
})