-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
48 lines (40 loc) · 1008 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
const assert = require('assert');
const babel = require('@babel/core');
const preset = require('.');
const componentWithImport = `
import{createElement}from"@bikeshaving/crank";
function Greeting({name="World"}) {
return (
<div>Hello {name}</div>
);
}
`
const { code: codeWithImport } = babel.transformSync(componentWithImport, {
presets: [
preset
],
babelrc: false,
compact: true
});
assert.equal(
codeWithImport,
'import{createElement}from"@bikeshaving/crank";function Greeting({name="World"}){return createElement("div",null,"Hello ",name);}'
);
const componentWithoutImport = `
function Greeting({name="World"}) {
return (
<div>Hello {name}</div>
);
}
`
const { code: codeWithoutImport } = babel.transformSync(componentWithoutImport, {
presets: [
preset
],
babelrc: false,
compact: true
});
assert.equal(
codeWithoutImport,
'import{createElement}from"@bikeshaving/crank";function Greeting({name="World"}){return createElement("div",null,"Hello ",name);}'
);