Skip to content

Commit

Permalink
test: add todos to indicate missing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nobkd committed Apr 5, 2023
1 parent 74d4991 commit dd11308
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions test/bg/action.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, it } from 'vitest';
import { describe, it, test } from 'vitest';

describe.concurrent('', () => {
it('', ({ expect }) => {});
test.todo('', () => it('', ({ expect }) => {}));
});
4 changes: 2 additions & 2 deletions test/bg/bg.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, it } from 'vitest';
import { describe, it, test } from 'vitest';

describe.concurrent('', () => {
it('', ({ expect }) => {});
test.todo('', () => it('', ({ expect }) => {}));
});
5 changes: 3 additions & 2 deletions test/bg/utils/storage.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { describe, it } from 'vitest';
import { describe, it, test } from 'vitest';

describe.concurrent('', () => {
it('', ({ expect }) => {});
test.todo('', () => it('', ({ expect }) => {}));

});
4 changes: 2 additions & 2 deletions test/map/map.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, it } from 'vitest';
import { describe, it, test } from 'vitest';

describe.concurrent('', () => {
it('', ({ expect }) => {});
test.todo('', () => it('', ({ expect }) => {}));
});

0 comments on commit dd11308

Please sign in to comment.