Skip to content

Commit 31ef487

Browse files
hi-ogawaclaude
andcommitted
test: remove dev-note numbering from comments
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 37254d0 commit 31ef487

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

test/cli/fixtures/assertion-helper/basic.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ test("soft async", async () => {
3636

3737
// --- Edge cases ---
3838

39-
// #5 Nested helpers: outermost marker wins
39+
// Nested helpers: outermost marker wins
4040
const innerHelper = vi.helper((a: any, b: any) => {
4141
expect(a).toEqual(b);
4242
});
@@ -48,7 +48,7 @@ test("nested", () => {
4848
outerHelper("nested", "x");
4949
});
5050

51-
// #8 Helper that passes
51+
// Helper that passes
5252
test("pass sync", () => {
5353
myEqual(1, 1);
5454
});
@@ -57,7 +57,7 @@ test("pass async", async () => {
5757
await myEqualAsync(1, 1);
5858
});
5959

60-
// #9 Helper returning value
60+
// Helper returning value
6161
const myAdd = vi.helper((a: number, b: number) => {
6262
return a + b;
6363
});
@@ -74,13 +74,13 @@ test("return async", async () => {
7474
expect(await myAddAsync(1, 2)).toBe(3);
7575
});
7676

77-
// #19 Multiple soft errors in one test
77+
// Multiple soft errors in one test
7878
test("multiple soft", () => {
7979
myEqualSoft("first", "x");
8080
myEqualSoft("second", "y");
8181
});
8282

83-
// #21 Custom error in helper
83+
// Custom error in helper
8484
const throwCustom = vi.helper(() => {
8585
throw new Error("custom error from helper");
8686
});

test/cli/test/assertion-helper.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ it('assertion helper', async () => {
9797
Received: "first"
9898
9999
❯ basic.test.ts:79:3
100-
77| // #19 Multiple soft errors in one test
100+
77| // Multiple soft errors in one test
101101
78| test("multiple soft", () => {
102102
79| myEqualSoft("first", "x");
103103
| ^

0 commit comments

Comments
 (0)