Skip to content

Commit dd11308

Browse files
committed
test: add todos to indicate missing tests
1 parent 74d4991 commit dd11308

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

test/bg/action.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { describe, it } from 'vitest';
1+
import { describe, it, test } from 'vitest';
22

33
describe.concurrent('', () => {
4-
it('', ({ expect }) => {});
4+
test.todo('', () => it('', ({ expect }) => {}));
55
});

test/bg/bg.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { describe, it } from 'vitest';
1+
import { describe, it, test } from 'vitest';
22

33
describe.concurrent('', () => {
4-
it('', ({ expect }) => {});
4+
test.todo('', () => it('', ({ expect }) => {}));
55
});

test/bg/utils/storage.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import { describe, it } from 'vitest';
1+
import { describe, it, test } from 'vitest';
22

33
describe.concurrent('', () => {
4-
it('', ({ expect }) => {});
4+
test.todo('', () => it('', ({ expect }) => {}));
5+
56
});

test/map/map.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { describe, it } from 'vitest';
1+
import { describe, it, test } from 'vitest';
22

33
describe.concurrent('', () => {
4-
it('', ({ expect }) => {});
4+
test.todo('', () => it('', ({ expect }) => {}));
55
});

0 commit comments

Comments
 (0)