summaryrefslogtreecommitdiff
path: root/test/es-module/test-esm-loader-missing-dynamic-instantiate-hook.mjs
blob: 50fbf0c83ecea90c319714a10b9c640706674b9a (plain)
1
2
3
4
5
6
7
8
// Flags: --experimental-modules --loader ./test/fixtures/es-module-loaders/missing-dynamic-instantiate-hook.mjs
import { expectsError } from '../common/index.mjs';

import('test').catch(expectsError({
  code: 'ERR_MISSING_DYNAMIC_INSTANTIATE_HOOK',
  message: 'The ES Module loader may not return a format of \'dynamic\' ' +
    'when no dynamicInstantiate function was provided'
}));