exception-ReferenceError.js 120 B

123
  1. test("unknown variable produces ReferenceError", () => {
  2. expect(new Function("i < 3")).toThrow(ReferenceError);
  3. });