-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathverify.mjs
79 lines (75 loc) · 2.25 KB
/
verify.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import { chromium } from "playwright";
import assert from "node:assert";
/**
* @param {import("playwright").Page} page
*/
export function verify(page, assert = default_assert) {
return assert(page);
}
/**
* @param {import("playwright").Page} page
* */
async function default_assert(page) {
let content = await (
await page.waitForSelector("#app > div > h1")
).innerText();
assert(content.includes("Vite"));
}
export const customAssertMap = {
"lit-js": async (page) => {
let content = await (
await page.waitForSelector("body > my-element > h1")
).innerText();
assert(content.includes("Vite"));
},
"lit-ts": async (page) => {
let content = await (
await page.waitForSelector("body > my-element > h1")
).innerText();
assert(content.includes("Vite"));
},
"preact-js": async (page) => {
let content = await (await page.waitForSelector("#app > h1")).innerText();
assert(content.includes("Vite"));
},
"preact-ts": async (page) => {
let content = await (await page.waitForSelector("#app > h1")).innerText();
assert(content.includes("Vite"));
},
"vue-js": async (page) => {
let content = await (await page.waitForSelector("#app > h1")).innerText();
assert(content.includes("Vite"));
},
"vue-ts": async (page) => {
let content = await (await page.waitForSelector("#app > h1")).innerText();
assert(content.includes("Vite"));
},
"react-jsx": async (page) => {
let content = await (await page.waitForSelector("#root > h1")).innerText();
assert(content.includes("Vite"));
},
"react-tsx": async (page) => {
let content = await (await page.waitForSelector("#root > h1")).innerText();
assert(content.includes("Vite"));
},
"solid-js": async (page) => {
let content = await (await page.waitForSelector("#root > h1")).innerText();
assert(content.includes("Vite"));
},
"solid-ts": async (page) => {
let content = await (await page.waitForSelector("#root > h1")).innerText();
assert(content.includes("Vite"));
},
"svelte-js": async (page) => {
let content = await (
await page.waitForSelector("#app > main > h1")
).innerText();
assert(content.includes("Vite"));
},
"svelte-ts": async (page) => {
let content = await (
await page.waitForSelector("#app > main > h1")
).innerText();
assert(content.includes("Vite"));
},
};