@@ -32,8 +32,8 @@ function wrapScriptInUrlWorker(script) {
3232 ` ;
3333}
3434
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 ( ) => {
3737 const result = await spawnPromisified (
3838 process . execPath ,
3939 [ '--input-type=module' , '--eval' , importMetaMainScript ] ,
@@ -44,9 +44,9 @@ describe("import.meta.main in evaluated scripts", () => {
4444 code : 0 ,
4545 signal : null ,
4646 } ) ;
47- } )
47+ } ) ;
4848
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 ( ) => {
5050 const result = await spawnPromisified (
5151 process . execPath ,
5252 [ '--input-type=module' , '--eval' , wrapScriptInEvalWorker ( importMetaMainScript ) ] ,
@@ -57,9 +57,9 @@ describe("import.meta.main in evaluated scripts", () => {
5757 code : 0 ,
5858 signal : null ,
5959 } ) ;
60- } )
60+ } ) ;
6161
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 ( ) => {
6363 const result = await spawnPromisified (
6464 process . execPath ,
6565 [ '--input-type=module' , '--eval' , wrapScriptInUrlWorker ( importMetaMainScript ) ] ,
@@ -70,5 +70,5 @@ describe("import.meta.main in evaluated scripts", () => {
7070 code : 0 ,
7171 signal : null ,
7272 } ) ;
73- } )
74- } )
73+ } ) ;
74+ } ) ;
0 commit comments