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