mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 10:25:42 +01:00
ci: fixed smoke tests by increasing timeout
This commit is contained in:
parent
1dd0635db4
commit
0a5bf64304
1 changed files with 4 additions and 2 deletions
|
|
@ -10,13 +10,15 @@ type BrowserType = "chromium" | "firefox" | "webkit"
|
|||
|
||||
const browserType: BrowserType = process.env.BROWSER as BrowserType || "chromium"
|
||||
|
||||
before(async () => {
|
||||
before(async function () {
|
||||
this.timeout(5 * 1000);
|
||||
console.log(`Starting browser: ${browserType}`)
|
||||
browser = await playwright[browserType].launch({
|
||||
headless: process.argv.includes('--headless'),
|
||||
});
|
||||
});
|
||||
after(async () => {
|
||||
after(async function () {
|
||||
this.timeout(5 * 1000);
|
||||
await browser.close();
|
||||
});
|
||||
beforeEach(async function () {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue