Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions assets/template/fixtures/slide-fixtures.js
Original file line number Diff line number Diff line change
Expand Up @@ -772,8 +772,7 @@ const slideFixtures = [
},
content: {
duration: 5000,
source:
"https://images.unsplash.com/photo-1551373884-8a0750074df7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2370&q=80",
source: "https://display.local.itkdev.dk/docs",
},
},
{
Expand Down
10 changes: 7 additions & 3 deletions assets/tests/template/template-iframe.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { test, expect } from "@playwright/test";

test("IFrame 0", async ({ page }) => {
test("iframe-0: ui tests", async ({ page }) => {
await page.goto("/template/iframe-0");

// TODO
const iframe = page.locator("iframe");
await expect(iframe).toBeVisible();
await expect(iframe).toHaveAttribute(
"src",
"https://display.local.itkdev.dk/docs",
);
});
Loading