Files
Trilium/apps/server/src/routes/session_parser.spec.ts

15 lines
358 B
TypeScript
Raw Normal View History

import { beforeAll, describe, expect, it } from "vitest";
import supertest from "supertest";
import type { Application } from "express";
import dayjs from "dayjs";
let app: Application;
describe("Session parser", () => {
beforeAll(async () => {
const buildApp = (await import("../app.js")).default;
app = await buildApp();
});
});