mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
16 lines
446 B
TypeScript
16 lines
446 B
TypeScript
import { afterAll, describe, expect, test } from "bun:test";
|
|
import { App } from "../src";
|
|
import { getDummyConnection } from "./helper";
|
|
|
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
|
afterAll(afterAllCleanup);
|
|
|
|
describe("App tests", async () => {
|
|
test("boots and pongs", async () => {
|
|
const app = new App(dummyConnection);
|
|
await app.build();
|
|
|
|
//expect(await app.data?.em.ping()).toBeTrue();
|
|
});
|
|
});
|