Change app_test.js

This commit is contained in:
AndrewTrieu
2023-03-13 12:52:06 +02:00
parent 061b8c5179
commit ce992c0aaa

View File

@@ -1,12 +1 @@
import { app } from "../app.js"; // Tested using Playwright. Please go to e2e-playwright in the parent folder. This file is left empty on purpose.
import { superoak } from "https://deno.land/x/superoak@4.4.0/mod.ts";
Deno.test("Home page works", async () => {
const testClient = await superoak(app);
const request = testClient
.get("https://quizzy.fly.dev")
.set("Origin", "http://localhost:8000");
await request
.expect(new RegExp("Quizzy"))
.expect("Access-Control-Allow-Origin", "http://localhost:8000");
});