Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/fuchsia
/
.
/
test
/
es-module
/
test-esm-basic-imports.mjs
blob: 5009fbadb39657f6912da4887ae9c3da13dcaf67 [
file
] [
log
] [
blame
] [
edit
]
import
'../common/index.mjs'
;
import
assert
from
'assert'
;
import
ok
from
'../fixtures/es-modules/test-esm-ok.mjs'
;
import
okShebang
from
'./test-esm-shebang.mjs'
;
assert
(
ok
);
assert
(
okShebang
);