mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-15 14:42:34 +03:00
cdad7edf15
Co-authored-by: Peng Xiao <pengxiao@outlook.com>
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import { setTimeout } from 'node:timers/promises';
|
|
|
|
import type { Page } from '@playwright/test';
|
|
import fs from 'fs-extra';
|
|
|
|
export async function waitForLogMessage(
|
|
page: Page,
|
|
log: string
|
|
): Promise<boolean> {
|
|
return new Promise(resolve => {
|
|
page.on('console', msg => {
|
|
if (msg.type() === 'log' && msg.text() === log) {
|
|
resolve(true);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
export async function removeWithRetry(
|
|
filePath: string,
|
|
maxRetries = 5,
|
|
delay = 500
|
|
) {
|
|
for (let i = 0; i < maxRetries; i++) {
|
|
try {
|
|
await fs.remove(filePath);
|
|
console.log(`File ${filePath} successfully deleted.`);
|
|
return true;
|
|
} catch (err: any) {
|
|
if (err.code === 'EBUSY' || err.code === 'EPERM') {
|
|
console.log(`File ${filePath} is busy or locked, retrying...`);
|
|
await setTimeout(delay);
|
|
} else {
|
|
console.error(`Failed to delete file ${filePath}:`, err);
|
|
}
|
|
}
|
|
}
|
|
// Add a return statement here to ensure that a value is always returned
|
|
return false;
|
|
}
|