blob: 5bbf2ef9e2bb85b709d8f600b7378147b6de7f86 (
plain)
1
2
3
4
5
|
test("missing initializer in 'const' variable declaration is syntax error", () => {
expect("const foo").not.toEval();
expect("const foo = 1, bar").not.toEval();
expect("const foo = 1, bar, baz = 2").not.toEval();
});
|