Sign in
chromium
/
external
/
github.com
/
antlr
/
antlr4
/
master
/
.
/
runtime
/
JavaScript
/
spec
/
imports
/
NodeCommonJSImportSpec.cjs
blob: 302a69199a83f246e7c774c1807f378be9351d0e [
file
]
"use strict"
;
const
antlr4
=
require
(
"antlr4"
);
describe
(
'Antlr4 Node CommonJs'
,
()
=>
{
it
(
'should use the CommonJS module on Node.js'
,
()
=>
{
expect
(
antlr4
).
toBeDefined
();
});
});