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