Skip to content

Commit 7396beb

Browse files
committed
run 10 sandcastle tests
1 parent 9c4c73e commit 7396beb

3 files changed

Lines changed: 2 additions & 9 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
ls -lR Specs/e2e
3535
continue-on-error: true
3636
- name: run e2e tests
37-
run: npm run test-e2e -- viewer.spec.js
37+
run: npm run test-e2e -- sandcastle.spec.js
3838
env:
3939
DEBUG: pw:api
4040
continue-on-error: true

Specs/e2e/sandcastle.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { globbySync } from "globby";
33

44
const gallery = globbySync("Apps/Sandcastle/gallery/*.html");
55

6-
for (const example of gallery) {
6+
for (const example of gallery.slice(0, 9)) {
77
test(`${example} renders`, async ({ page }) => {
88
test.setTimeout(100000);
99

Specs/e2e/viewer.spec.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,3 @@ test("Viewer renders", async ({ cesiumPage }) => {
1010
await cesiumPage.page.waitForLoadState("networkidle");
1111
await expect(cesiumPage.page).toHaveScreenshot();
1212
});
13-
14-
// test("has title", async ({ page }) => {
15-
// await page.goto("https://playwright.dev/");
16-
17-
// // Expect a title "to contain" a substring.
18-
// await expect(page).toHaveTitle(/Playwright/);
19-
// });

0 commit comments

Comments
 (0)