Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/main
/
.
/
test
/
es-module
/
test-esm-import-assertion-2.mjs
blob: 8001c29772b1f0cece3b33fca9d9fbe030f1386d [
file
] [
edit
]
import
'../common/index.mjs'
;
import
{
strictEqual
}
from
'assert'
;
import
secret
from
'../fixtures/experimental.json'
assert
{
type
:
'json'
,
unsupportedAssertion
:
'should ignore'
};
strictEqual
(
secret
.
ofLife
,
42
);