-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add LTS 3.20 in the test suite (#37)
- Loading branch information
1 parent
f8dad07
commit bd314b8
Showing
17 changed files
with
1,670 additions
and
1,311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"use strict"; | ||
'use strict'; | ||
|
||
module.exports = function(/* environment, appConfig */) { | ||
return {}; | ||
return { }; | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
const lint = process.env.CI ? "nolint" : ""; | ||
const testParams = ["hidepassed", lint].filter(Boolean).join("&"); | ||
const lint = process.env.CI ? 'nolint' : ''; | ||
const testParams = ['hidepassed', lint].filter(Boolean).join('&'); | ||
|
||
module.exports = { | ||
parallel: -1, | ||
test_page: `tests/index.html?${testParams}`, | ||
disable_watching: true, | ||
launch_in_ci: ["Chrome"], | ||
launch_in_dev: ["Chrome"], | ||
launch_in_ci: [ | ||
'Chrome' | ||
], | ||
launch_in_dev: [ | ||
'Chrome' | ||
], | ||
browser_start_timeout: 120, | ||
browser_args: { | ||
Chrome: { | ||
ci: [ | ||
// --no-sandbox is needed when running Chrome inside a container | ||
process.env.CI ? "--no-sandbox" : null, | ||
"--headless", | ||
"--disable-dev-shm-usage", | ||
"--disable-software-rasterizer", | ||
"--mute-audio", | ||
"--remote-debugging-port=0", | ||
"--window-size=1440,900" | ||
process.env.CI ? '--no-sandbox' : null, | ||
'--headless', | ||
'--disable-dev-shm-usage', | ||
'--disable-software-rasterizer', | ||
'--mute-audio', | ||
'--remote-debugging-port=0', | ||
'--window-size=1440,900' | ||
].filter(Boolean) | ||
}, | ||
Firefox: { | ||
ci: ["-headless", "--window-size=1440,900"].filter(Boolean) | ||
ci: ['-headless', '--window-size=1440,900'].filter(Boolean) | ||
} | ||
} | ||
}; |
Oops, something went wrong.