Skip to content

Commit

Permalink
Removing firefox from nightwatch.js tests to keep the build time low
Browse files Browse the repository at this point in the history
  • Loading branch information
avoidwork committed Aug 30, 2022
1 parent c0cb6c0 commit 5188a5a
Show file tree
Hide file tree
Showing 3 changed files with 305 additions and 340 deletions.
20 changes: 2 additions & 18 deletions nightwatch.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,20 @@ module.exports = {
test_settings: {
default: {
disable_error_log: false,
launch_url: "http://localhost",
launch_url: "http://localhost:8000/",
screenshots: {
enabled: false,
path: "screens",
on_failure: true
},
desiredCapabilities: {
browserName: "firefox"
browserName: "chrome"
},
webdriver: {
start_process: true,
server_path: ""
}
},
firefox: {
desiredCapabilities: {
browserName: "firefox",
alwaysMatch: {
acceptInsecureCerts: true,
"moz:firefoxOptions": {
args: []
}
}
},
webdriver: {
start_process: true,
server_path: "",
cli_args: []
}
},
chrome: {
desiredCapabilities: {
browserName: "chrome",
Expand Down

0 comments on commit 5188a5a

Please sign in to comment.