blob: c3abaeeca578fe0d4dcdf58bdedab968c3d9bb9c (
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
|
import { parseHTML } from 'linkedom';
import { vi } from 'vitest';
// Parse the starting state of the basic starting template
export function setupDOM() {
const result = parseHTML(`
<!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 id="app"></div>
</body>
</html>`);
global.HTMLElement = result.HTMLElement;
global.Node = result.Node;
global.document = result.document;
global.window = result.window;
global.window.requestAnimationFrame = vi.fn().mockImplementation((cb) => cb());
return result;
}
|