Skip to content

Commit

Permalink
test: more common functions
Browse files Browse the repository at this point in the history
  • Loading branch information
nobkd committed Apr 4, 2023
1 parent 50e48ac commit 8fec8bc
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 5 deletions.
6 changes: 5 additions & 1 deletion test/bg/action.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import { describe, it } from 'vitest';

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

});
});
6 changes: 5 additions & 1 deletion test/bg/bg.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import { describe, it } from 'vitest';

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

});
});
6 changes: 5 additions & 1 deletion test/bg/utils/storage.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import { describe, it } from 'vitest';

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

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

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

});
});
14 changes: 13 additions & 1 deletion test/map/utils/read.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
import { describe, it } from 'vitest';
import { readPB, readQ } from '../../../src/map/utils/read';

describe.concurrent('', () => {});
describe.concurrent('read pb', () => {
it('', async ({ expect }) => {
const req = readPB('');
});
});


describe.concurrent('read query', () => {
it('', async ({ expect }) => {
const req = readQ(''); // TODO: Mocking requests
});
});

0 comments on commit 8fec8bc

Please sign in to comment.