diff --git a/tests/videos.spec.ts b/tests/videos.spec.ts index ccd9722..bea486d 100644 --- a/tests/videos.spec.ts +++ b/tests/videos.spec.ts @@ -7,3 +7,10 @@ test("should be able to view videos", async ({ page }) => { .click(); await expect(page).toHaveURL("http://localhost:3000/videos"); }); + +test("no videos should exist", async ({ page }) => { + await page.goto("http://localhost:3000/videos"); + await expect(page.locator("div.flex-start > div > span")).toContainText( + "You do not have any recordings." + ); +});