add check to make sure no videos exist

This commit is contained in:
MarconLP 2023-04-15 20:31:34 +02:00
parent 50d5b139d9
commit 6db45ffbfc
No known key found for this signature in database
GPG key ID: A08A9C8B623F5EA5

View file

@ -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."
);
});