mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 13:22:07 +00:00
14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
|
|
const ArrayIteratorPrototype =
|
|
Object.getPrototypeOf(Array.prototype[Symbol.iterator]());
|
|
|
|
delete Array.prototype[Symbol.iterator];
|
|
delete ArrayIteratorPrototype.next;
|
|
|
|
require('../common/fixtures');
|
|
import('../fixtures/es-modules/test-esm-ok.mjs').then(common.mustCall());
|