1// Flags: --no-experimental-fetch 2import '../common/index.mjs'; 3 4import assert from 'assert'; 5 6assert.strictEqual(typeof globalThis.fetch, 'undefined'); 7assert.strictEqual(typeof globalThis.FormData, 'undefined'); 8assert.strictEqual(typeof globalThis.Headers, 'undefined'); 9assert.strictEqual(typeof globalThis.Request, 'undefined'); 10assert.strictEqual(typeof globalThis.Response, 'undefined'); 11 12assert.strictEqual(typeof WebAssembly.compileStreaming, 'undefined'); 13assert.strictEqual(typeof WebAssembly.instantiateStreaming, 'undefined'); 14