mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Drop sleep
This commit is contained in:
@ -16,15 +16,10 @@ async function go() {
|
||||
testRunnerPath,
|
||||
testWorkspace
|
||||
})
|
||||
await sleep(10000)
|
||||
} catch (err) {
|
||||
console.error('Failed to run tests')
|
||||
process.exit(1)
|
||||
}
|
||||
}
|
||||
|
||||
go()
|
||||
|
||||
export function sleep(ms: number) {
|
||||
return new Promise(resolve => setTimeout(resolve, ms));
|
||||
}
|
||||
go()
|
||||
Reference in New Issue
Block a user