blob: fa11c737ae55ffc617fa7df112c868f058a99ec3 (
plain)
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
|
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`vdom morph > should render smoke test with vdom morph > smoke_test 1`] = `
"<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🚧 {app_name}</title>
</head>
<body>
<div><p>smoke test</p></div>
</body>
</html>"
`;
exports[`vdom morph > should render using vdom morph with fragments > fragment_test 1`] = `
"<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🚧 {app_name}</title>
</head>
<body>
<table><head><tr><th>Person Name</th><th>Person Age</th></tr></head><body><tr><td>Person One</td><td>18</td></tr><tr><td>Person Two</td><td>24</td></tr><tr><td>Person Three</td><td>30</td></tr></body></table>
</body>
</html>"
`;
exports[`vdom morph > should render using vdom morph with keys > fragment_test 1`] = `
"<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🚧 {app_name}</title>
</head>
<body>
<ul><tr data-lustre-key="1dfg"><td>Person One</td><td>18</td></tr><tr data-lustre-key="abc3"><td>Person Two</td><td>24</td></tr><tr data-lustre-key="ga4d"><td>Person Three</td><td>30</td></tr></ul>
</body>
</html>"
`;
|