refactor: use test
This commit is contained in:
parent
07f885fea8
commit
ed3e035ad6
23 changed files with 342 additions and 342 deletions
|
@ -35,7 +35,7 @@ describe('MetaService', () => {
|
|||
await app.close();
|
||||
});
|
||||
|
||||
it('fetch (cache)', async () => {
|
||||
test('fetch (cache)', async () => {
|
||||
const db = app.get<DataSource>(DI.db);
|
||||
const spy = jest.spyOn(db, 'transaction');
|
||||
|
||||
|
@ -45,7 +45,7 @@ describe('MetaService', () => {
|
|||
expect(spy).toHaveBeenCalledTimes(0);
|
||||
});
|
||||
|
||||
it('fetch (force)', async () => {
|
||||
test('fetch (force)', async () => {
|
||||
const db = app.get<DataSource>(DI.db);
|
||||
const spy = jest.spyOn(db, 'transaction');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue