Create nightwatch.json

This commit is contained in:
Ophir LOJKINE 2020-04-28 00:03:56 +02:00 committed by GitHub
parent bc6ac9ea7d
commit a735dd0178
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

23
.github/workflows/nightwatch.json vendored Normal file
View file

@ -0,0 +1,23 @@
{
"src_folders": ["tests"],
"webdriver": {
"start_process": true,
"server_path": "node_modules/.bin/chromedriver",
"port": 9515
},
"test_settings": {
"default": {
"desiredCapabilities": {
"browserName": "chrome",
"javascriptEnabled": true,
"acceptSslCerts": true,
"chromeOptions": {
"prefs": {
"intl.accept_languages": "en-US,en"
},
"args": ["--headless"]
}
}
}
}
}