Skip to content

Commit 8526e5c

Browse files
committed
test: regression tests for nvim-neotest#46
1 parent 514fd4e commit 8526e5c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

spec/backticks.spec.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
describe("test names containing backticks", () => {
2+
it("`", () => {
3+
console.log("do test");
4+
});
5+
6+
test("`", () => {
7+
console.log("do test");
8+
});
9+
10+
it("``", () => {
11+
console.log("do test");
12+
});
13+
14+
test("``", () => {
15+
console.log("do test");
16+
});
17+
});

0 commit comments

Comments
 (0)