@@ -32,8 +32,8 @@ function wrapScriptInUrlWorker(script) {
32
32
` ;
33
33
}
34
34
35
- describe ( " import.meta.main in evaluated scripts" , ( ) => {
36
- it ( " should evaluate true in evaluated script" , async ( ) => {
35
+ describe ( ' import.meta.main in evaluated scripts' , ( ) => {
36
+ it ( ' should evaluate true in evaluated script' , async ( ) => {
37
37
const result = await spawnPromisified (
38
38
process . execPath ,
39
39
[ '--input-type=module' , '--eval' , importMetaMainScript ] ,
@@ -44,9 +44,9 @@ describe("import.meta.main in evaluated scripts", () => {
44
44
code : 0 ,
45
45
signal : null ,
46
46
} ) ;
47
- } )
47
+ } ) ;
48
48
49
- it ( " should evaluate true in worker instantiated with module source by evaluated script" , async ( ) => {
49
+ it ( ' should evaluate true in worker instantiated with module source by evaluated script' , async ( ) => {
50
50
const result = await spawnPromisified (
51
51
process . execPath ,
52
52
[ '--input-type=module' , '--eval' , wrapScriptInEvalWorker ( importMetaMainScript ) ] ,
@@ -57,9 +57,9 @@ describe("import.meta.main in evaluated scripts", () => {
57
57
code : 0 ,
58
58
signal : null ,
59
59
} ) ;
60
- } )
60
+ } ) ;
61
61
62
- it ( " should evaluate true in worker instantiated with `data:` URL by evaluated script" , async ( ) => {
62
+ it ( ' should evaluate true in worker instantiated with `data:` URL by evaluated script' , async ( ) => {
63
63
const result = await spawnPromisified (
64
64
process . execPath ,
65
65
[ '--input-type=module' , '--eval' , wrapScriptInUrlWorker ( importMetaMainScript ) ] ,
@@ -70,5 +70,5 @@ describe("import.meta.main in evaluated scripts", () => {
70
70
code : 0 ,
71
71
signal : null ,
72
72
} ) ;
73
- } )
74
- } )
73
+ } ) ;
74
+ } ) ;
0 commit comments