Skip to content

Commit

Permalink
test: test names with backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
loqusion committed Apr 5, 2024
1 parent 514fd4e commit 9e21914
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions spec/backticks.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
describe("test names containing backticks", () => {
it("`", () => {
console.log("do test");
});

test("`", () => {
console.log("do test");
});

it("``", () => {
console.log("do test");
});

test("``", () => {
console.log("do test");
});
});

0 comments on commit 9e21914

Please sign in to comment.