mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
assert -> with
This commit is contained in:
parent
45e76812dc
commit
427d75751a
2 changed files with 4 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
import { assertEquals } from '@/deps-test.ts';
|
import { assertEquals } from '@/deps-test.ts';
|
||||||
|
|
||||||
import event0 from '~/fixtures/events/event-0.json' assert { type: 'json' };
|
import event0 from '~/fixtures/events/event-0.json' with { type: 'json' };
|
||||||
import event1 from '~/fixtures/events/event-1.json' assert { type: 'json' };
|
import event1 from '~/fixtures/events/event-1.json' with { type: 'json' };
|
||||||
|
|
||||||
import { eventToMicroFilter, getFilterId, getFilterLimit, getMicroFilters, isMicrofilter } from './filter.ts';
|
import { eventToMicroFilter, getFilterId, getFilterLimit, getMicroFilters, isMicrofilter } from './filter.ts';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@ import { db } from '@/db.ts';
|
||||||
import { buildUserEvent } from '@/db/users.ts';
|
import { buildUserEvent } from '@/db/users.ts';
|
||||||
import { assertEquals, assertRejects } from '@/deps-test.ts';
|
import { assertEquals, assertRejects } from '@/deps-test.ts';
|
||||||
|
|
||||||
import event0 from '~/fixtures/events/event-0.json' assert { type: 'json' };
|
import event0 from '~/fixtures/events/event-0.json' with { type: 'json' };
|
||||||
import event1 from '~/fixtures/events/event-1.json' assert { type: 'json' };
|
import event1 from '~/fixtures/events/event-1.json' with { type: 'json' };
|
||||||
|
|
||||||
import { EventsDB } from './events-db.ts';
|
import { EventsDB } from './events-db.ts';
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue