mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-22 17:48:56 +01:00
Fix browser integration tests
This commit is contained in:
@@ -71,7 +71,10 @@ async function mkdir(dir: string): Promise<void> {
|
||||
// doesn't exist, that's OK
|
||||
}
|
||||
|
||||
await fs.promises.mkdir(dir);
|
||||
try {
|
||||
await fs.promises.mkdir(dir, { recursive: true });
|
||||
} catch {
|
||||
}
|
||||
}
|
||||
|
||||
const MTIME_UPDATE_TIME = 1000; // 1s
|
||||
|
||||
Reference in New Issue
Block a user