mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
796f3d0af4
PR-URL: https://github.com/nodejs/node/pull/29866 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
13 lines
504 B
JavaScript
13 lines
504 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_RETURN_PROPERTY',
|
|
message: 'Expected a valid url to be returned for the "url" from the ' +
|
|
'"loader resolve" function but got ' +
|
|
'../fixtures/es-modules/test-esm-ok.mjs.'
|
|
}))
|
|
.then(mustCall());
|