@@ -112,7 +112,8 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
112
112
strictEqual ( code , 0 ) ;
113
113
} ) ;
114
114
115
- it ( 'should support dynamic source phase imports' , async ( ) => {
115
+ // TODO: Enable this once https://github.com/nodejs/node/pull/56842 lands.
116
+ it . skip ( 'should support dynamic source phase imports' , async ( ) => {
116
117
const { code, stderr, stdout } = await spawnPromisified ( execPath , [
117
118
'--no-warnings' ,
118
119
'--experimental-wasm-modules' ,
@@ -152,7 +153,8 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
152
153
strictEqual ( code , 0 ) ;
153
154
} ) ;
154
155
155
- it ( 'should not execute dynamic source phase imports' , async ( ) => {
156
+ // TODO: Enable this once https://github.com/nodejs/node/pull/56842 lands.
157
+ it . skip ( 'should not execute dynamic source phase imports' , async ( ) => {
156
158
const { code, stderr, stdout } = await spawnPromisified ( execPath , [
157
159
'--no-warnings' ,
158
160
'--experimental-wasm-modules' ,
@@ -166,7 +168,8 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
166
168
strictEqual ( code , 0 ) ;
167
169
} ) ;
168
170
169
- it ( 'should throw for dynamic source phase imports not defined' , async ( ) => {
171
+ // TODO: Enable this once https://github.com/nodejs/node/pull/56842 lands.
172
+ it . skip ( 'should throw for dynamic source phase imports not defined' , async ( ) => {
170
173
const fileUrl = fixtures . fileURL ( 'es-modules/wasm-source-phase.js' ) ;
171
174
const { code, stderr, stdout } = await spawnPromisified ( execPath , [
172
175
'--no-warnings' ,
@@ -222,7 +225,8 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
222
225
notStrictEqual ( code , 0 ) ;
223
226
} ) ;
224
227
225
- it ( 'should throw for vm source phase dynamic import' , async ( ) => {
228
+ // TODO: Enable this once https://github.com/nodejs/node/pull/56842 lands.
229
+ it . skip ( 'should throw for vm source phase dynamic import' , async ( ) => {
226
230
const { code, stderr, stdout } = await spawnPromisified ( execPath , [
227
231
'--no-warnings' ,
228
232
'--experimental-wasm-modules' ,
0 commit comments