refactor: 🚚 Move testing to its own sub-package

This commit is contained in:
Jesse Wierzbinski 2025-06-15 22:17:33 +02:00
parent a211772309
commit fde70fa61a
No known key found for this signature in database
82 changed files with 207 additions and 125 deletions

View file

@ -1,7 +1,7 @@
import { afterAll, describe, expect, test } from "bun:test";
import { Application, Token } from "@versia/kit/db";
import { fakeRequest, getTestUsers } from "@versia-server/tests";
import { randomUUIDv7 } from "bun";
import { fakeRequest, getTestUsers } from "~/tests/utils";
const { deleteUsers, users } = await getTestUsers(1);

View file

@ -1,7 +1,7 @@
import { afterAll, describe, expect, test } from "bun:test";
import { Application, Token } from "@versia/kit/db";
import { fakeRequest, getTestUsers } from "@versia-server/tests";
import { randomUUIDv7 } from "bun";
import { fakeRequest, getTestUsers } from "~/tests/utils";
const { deleteUsers, users } = await getTestUsers(1);