slash-after-block.js 199 B

123456
  1. test("slash token resolution in lexer", () => {
  2. expect(`{ blah.blah; }\n/foo/`).toEval();
  3. expect("``/foo/").not.toEval();
  4. expect("1/foo/").not.toEval();
  5. expect("1/foo").toEval();
  6. });