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
| const path = require('path')
|
| const {
| transformSync
| } = require('@babel/core')
|
| const options = {
| filename: '/index.vue',
| configFile: false,
| minified: true,
| plugins: [path.resolve(__dirname, '../packages/babel-plugin-console/dist/index.js')]
| }
|
| describe('console', () => {
| it('log', () => {
| expect(transformSync('console.log(\'123\')', options).code)
| .toBe('__f__("log","123"," at /index.vue:1");')
| expect(transformSync('console.log(\'123\',a,{a:1,b:2})', options).code)
| .toBe('__f__("log","123",a,{a:1,b:2}," at /index.vue:1");')
| })
|
| it('debug', () => {
| expect(transformSync('console.log(\'123\')', options).code)
| .toBe('__f__("log","123"," at /index.vue:1");')
| expect(transformSync('console.log(\'123\',a,{a:1,b:2})', options).code)
| .toBe('__f__("log","123",a,{a:1,b:2}," at /index.vue:1");')
| })
|
| it('info', () => {
| expect(transformSync('console.info(\'123\')', options).code)
| .toBe('__f__("info","123"," at /index.vue:1");')
| expect(transformSync('console.info(\'123\',a,{a:1,b:2})', options).code)
| .toBe('__f__("info","123",a,{a:1,b:2}," at /index.vue:1");')
| })
|
| it('warn', () => {
| expect(transformSync('console.warn(\'123\')', options).code)
| .toBe('__f__("warn","123"," at /index.vue:1");')
| expect(transformSync('console.warn(\'123\',a,{a:1,b:2})', options).code)
| .toBe('__f__("warn","123",a,{a:1,b:2}," at /index.vue:1");')
| })
|
| it('error', () => {
| expect(transformSync('console.error(\'123\')', options).code)
| .toBe('__f__("error","123"," at /index.vue:1");')
| expect(transformSync('console.error(\'123\',a,{a:1,b:2})', options).code)
| .toBe('__f__("error","123",a,{a:1,b:2}," at /index.vue:1");')
| })
| })
|
|