@@ -124,8 +124,7 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
124124 strictEqual ( code , 0 ) ;
125125 } ) ;
126126
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 ( ) => {
129128 const { code, stderr, stdout } = await spawnPromisified ( execPath , [
130129 '--no-warnings' ,
131130 '--experimental-wasm-modules' ,
@@ -166,8 +165,7 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
166165 strictEqual ( code , 0 ) ;
167166 } ) ;
168167
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 ( ) => {
171169 const { code, stderr, stdout } = await spawnPromisified ( execPath , [
172170 '--no-warnings' ,
173171 '--experimental-wasm-modules' ,
@@ -181,8 +179,7 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
181179 strictEqual ( code , 0 ) ;
182180 } ) ;
183181
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 ( ) => {
186183 const fileUrl = fixtures . fileURL ( 'es-modules/wasm-source-phase.js' ) ;
187184 const { code, stderr, stdout } = await spawnPromisified ( execPath , [
188185 '--no-warnings' ,
@@ -238,8 +235,7 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
238235 notStrictEqual ( code , 0 ) ;
239236 } ) ;
240237
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 ( ) => {
243239 const { code, stderr, stdout } = await spawnPromisified ( execPath , [
244240 '--no-warnings' ,
245241 '--experimental-wasm-modules' ,
0 commit comments