refactor(events-db-test): resolve import specifier via the active import map

This commit is contained in:
P. Reis 2024-04-14 10:32:22 -03:00
parent fe6b42211c
commit f9831ba74a
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import { assertEquals, assertRejects } from '@/deps-test.ts';
import event0 from '~/fixtures/events/event-0.json' with { type: 'json' }; import event0 from '~/fixtures/events/event-0.json' with { type: 'json' };
import event1 from '~/fixtures/events/event-1.json' with { type: 'json' }; import event1 from '~/fixtures/events/event-1.json' with { type: 'json' };
import { EventsDB } from './events-db.ts'; import { EventsDB } from '@/storages/events-db.ts';
const eventsDB = new EventsDB(db); const eventsDB = new EventsDB(db);