Skip to content

Commit d2518e3

Browse files
committed
Fix codeclimate issues based on eslint engine
1 parent 7915dc1 commit d2518e3

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

template/test/e2e/nightwatch.conf.js

+25-25
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
// http://nightwatchjs.org/guide#settings-file
22
module.exports = {
3-
"src_folders": ["test/e2e/specs"],
4-
"output_folder": "test/e2e/reports",
5-
"custom_assertions_path": ["test/e2e/custom-assertions"],
3+
'src_folders': ['test/e2e/specs'],
4+
'output_folder': 'test/e2e/reports',
5+
'custom_assertions_path': ['test/e2e/custom-assertions'],
66

7-
"selenium": {
8-
"start_process": true,
9-
"server_path": "node_modules/selenium-server/lib/runner/selenium-server-standalone-2.53.0.jar",
10-
"host": "127.0.0.1",
11-
"port": 4444,
12-
"cli_args": {
13-
"webdriver.chrome.driver": require('chromedriver').path
7+
'selenium': {
8+
'start_process': true,
9+
'server_path': 'node_modules/selenium-server/lib/runner/selenium-server-standalone-2.53.0.jar',
10+
'host': '127.0.0.1',
11+
'port': 4444,
12+
'cli_args': {
13+
'webdriver.chrome.driver': require('chromedriver').path
1414
}
1515
},
1616

17-
"test_settings": {
18-
"default": {
19-
"selenium_port": 4444,
20-
"selenium_host": "localhost",
21-
"silent": true
17+
'test_settings': {
18+
'default': {
19+
'selenium_port': 4444,
20+
'selenium_host': 'localhost',
21+
'silent': true
2222
},
2323

24-
"chrome": {
25-
"desiredCapabilities": {
26-
"browserName": "chrome",
27-
"javascriptEnabled": true,
28-
"acceptSslCerts": true
24+
'chrome': {
25+
'desiredCapabilities': {
26+
'browserName': 'chrome',
27+
'javascriptEnabled': true,
28+
'acceptSslCerts': true
2929
}
3030
},
3131

32-
"firefox": {
33-
"desiredCapabilities": {
34-
"browserName": "firefox",
35-
"javascriptEnabled": true,
36-
"acceptSslCerts": true
32+
'firefox': {
33+
'desiredCapabilities': {
34+
'browserName': 'firefox',
35+
'javascriptEnabled': true,
36+
'acceptSslCerts': true
3737
}
3838
}
3939
}

0 commit comments

Comments
 (0)