mirror of https://github.com/nodejs/node.git
11 lines
379 B
JavaScript
11 lines
379 B
JavaScript
// Flags: --experimental-loader ./test/fixtures/es-module-loaders/loader-invalid-url.mjs
|
|
import { expectsError, mustCall } from '../common/index.mjs';
|
|
import assert from 'assert';
|
|
|
|
import('../fixtures/es-modules/test-esm-ok.mjs')
|
|
.then(assert.fail, expectsError({
|
|
code: 'ERR_INVALID_URL',
|
|
message: 'Invalid URL: ../fixtures/es-modules/test-esm-ok.mjs'
|
|
}))
|
|
.then(mustCall());
|