We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5bd2b2 commit 2fc684bCopy full SHA for 2fc684b
1 file changed
spec/spec.js
@@ -14,5 +14,37 @@ pluginTester({
14
code: '"not strict";',
15
output:'"not strict";',
16
},
17
+ {
18
+ code: '"use strict";',
19
+ output: '"use strict";',
20
+ },
21
22
+ code: '"use strict"; "not strict";',
23
+ output:'"not strict";',
24
25
26
+ code: `
27
+ "use strict";
28
+ "not strict";
29
+
30
+ process.platform = "windows";
31
+ `,
32
+ output: `
33
34
35
+ process.platform = "windows";`,
36
37
38
39
40
41
42
+ let x = 1;
43
44
45
46
47
+ let x = 1;`,
48
49
]
50
})
0 commit comments