File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change 11// Flags: --experimental-vm-modules --expose-internals
22'use strict' ;
33require ( '../common' ) ;
4- const fixtures = require ( '../common/fixtures' ) ;
54const assert = require ( 'assert' ) ;
65const { types, inspect } = require ( 'util' ) ;
76const vm = require ( 'vm' ) ;
87const { internalBinding } = require ( 'internal/test/binding' ) ;
98const { JSStream } = internalBinding ( 'js_stream' ) ;
109
1110const external = ( new JSStream ( ) ) . _externalStream ;
12- const wasmBuffer = fixtures . readSync ( 'simple.wasm' ) ;
1311
1412for ( const [ value , _method ] of [
1513 [ external , 'isExternal' ] ,
@@ -50,7 +48,6 @@ for (const [ value, _method ] of [
5048 [ new DataView ( new ArrayBuffer ( ) ) ] ,
5149 [ new SharedArrayBuffer ( ) ] ,
5250 [ new Proxy ( { } , { } ) , 'isProxy' ] ,
53- [ new WebAssembly . Module ( wasmBuffer ) , 'isWebAssemblyCompiledModule' ] ,
5451] ) {
5552 const method = _method || `is${ value . constructor . name } ` ;
5653 assert ( method in types , `Missing ${ method } for ${ inspect ( value ) } ` ) ;
You can’t perform that action at this time.
0 commit comments