-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprerender_annotation_mock.mts
40 lines (36 loc) · 1.25 KB
/
prerender_annotation_mock.mts
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
/**
* @fileoverview Utilities for mocking {@link PrerenderAnnotation} models.
* @see /README.md#Mocking
*/
import { PrerenderAnnotation, ScriptAnnotation, StyleAnnotation } from './prerender_annotation.mjs';
/**
* Mocks a {@link PrerenderAnnotation} object. Since this type is a
* discriminated union, this mock picks are arbitrary subtype. As a result, no
* options are supported, because the shape of the type would completely change
* based on the chosen subtype. Mock the specific subtype if you care about such
* data.
*
* @see mockScriptAnnotation
* @see mockStyleAnnotation
*/
export function mockPrerenderAnnotation(): PrerenderAnnotation {
return mockScriptAnnotation();
}
/** Mocks a {@link ScriptAnnotation} object with the given overrides. */
export function mockScriptAnnotation(overrides: Partial<ScriptAnnotation> = {}):
ScriptAnnotation {
return {
type: 'script',
path: 'path/to/mocked/script',
...overrides,
};
}
/** Mocks a {@link StyleAnnotation} object with the given overrides. */
export function mockStyleAnnotation(overrides: Partial<StyleAnnotation> = {}):
StyleAnnotation {
return {
type: 'style',
path: 'path/to/mocked/style.css',
...overrides,
};
}