-
-
Notifications
You must be signed in to change notification settings - Fork 9.5k
/
Copy pathutils.ts
58 lines (50 loc) · 1.93 KB
/
utils.ts
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
/// <reference lib="dom" />
// eslint-disable-next-line depend/ban-dependencies
import { ensureDir, readJSON, readdir, writeJSON } from 'fs-extra';
import { join } from 'path';
import type { Page } from 'playwright-core';
import type { BenchResults } from './types';
export const now = () => new Date().getTime();
export interface SaveBenchOptions {
rootDir?: string;
}
export const saveBench = async (
key: string,
data: Partial<BenchResults>,
options: SaveBenchOptions
) => {
const dirName = join(options.rootDir || process.cwd(), 'bench');
const fileName = `${key}.json`;
const existing = await ensureDir(dirName).then(() => {
return readJSON(join(dirName, fileName)).catch(() => ({}));
});
await writeJSON(join(dirName, fileName), { ...existing, ...data }, { spaces: 2 });
};
export const loadBench = async (options: SaveBenchOptions): Promise<Partial<BenchResults>> => {
const dirName = join(options.rootDir || process.cwd(), 'bench');
const files = await readdir(dirName);
return files.reduce(async (acc, fileName) => {
const data = await readJSON(join(dirName, fileName));
return { ...(await acc), ...data };
}, Promise.resolve({}));
// return readJSON(join(dirname, `bench.json`));
};
export async function getPreviewPage(page: Page) {
/**
* Fix flakiness in preview iframe retrieval Sometimes the iframe is not yet available when we try
* to access it, even after waiting for the readyState to be complete.
*
* This loop will keep trying to access the iframe until it's available.
*/
for (let i = 0; i < 10; i++) {
// eslint-disable-next-line @typescript-eslint/no-loop-func
await page.waitForFunction(() => {
return document.querySelector('iframe')?.contentDocument.readyState === 'complete';
});
const previewPage = page.frame({ url: /iframe.html/ })?.page();
if (previewPage) {
return previewPage;
}
}
throw new Error('The preview iframe was never found');
}