@@ -124,8 +124,7 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
124
124
strictEqual ( code , 0 ) ;
125
125
} ) ;
126
126
127
- // TODO: Enable this once https://github.com/nodejs/node/pull/56842 lands.
128
- it . skip ( 'should support dynamic source phase imports' , async ( ) => {
127
+ it ( 'should support dynamic source phase imports' , async ( ) => {
129
128
const { code, stderr, stdout } = await spawnPromisified ( execPath , [
130
129
'--no-warnings' ,
131
130
'--experimental-wasm-modules' ,
@@ -166,8 +165,7 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
166
165
strictEqual ( code , 0 ) ;
167
166
} ) ;
168
167
169
- // TODO: Enable this once https://github.com/nodejs/node/pull/56842 lands.
170
- it . skip ( 'should not execute dynamic source phase imports' , async ( ) => {
168
+ it ( 'should not execute dynamic source phase imports' , async ( ) => {
171
169
const { code, stderr, stdout } = await spawnPromisified ( execPath , [
172
170
'--no-warnings' ,
173
171
'--experimental-wasm-modules' ,
@@ -181,8 +179,7 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
181
179
strictEqual ( code , 0 ) ;
182
180
} ) ;
183
181
184
- // TODO: Enable this once https://github.com/nodejs/node/pull/56842 lands.
185
- it . skip ( 'should throw for dynamic source phase imports not defined' , async ( ) => {
182
+ it ( 'should throw for dynamic source phase imports not defined' , async ( ) => {
186
183
const fileUrl = fixtures . fileURL ( 'es-modules/wasm-source-phase.js' ) ;
187
184
const { code, stderr, stdout } = await spawnPromisified ( execPath , [
188
185
'--no-warnings' ,
@@ -238,8 +235,7 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
238
235
notStrictEqual ( code , 0 ) ;
239
236
} ) ;
240
237
241
- // TODO: Enable this once https://github.com/nodejs/node/pull/56842 lands.
242
- it . skip ( 'should throw for vm source phase dynamic import' , async ( ) => {
238
+ it ( 'should throw for vm source phase dynamic import' , async ( ) => {
243
239
const { code, stderr, stdout } = await spawnPromisified ( execPath , [
244
240
'--no-warnings' ,
245
241
'--experimental-wasm-modules' ,
0 commit comments