Skip to content

Commit 9660628

Browse files
committed
typo fix
1 parent b70d62a commit 9660628

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

.gitpod.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This configuration file was automatically generated by Gitpod.
2+
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
3+
# and commit this file to your remote git repository to share the goodness with others.
4+
5+
tasks:
6+
- init: npm install && npm test
7+
8+

index.js

+8-7
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ function searchTextOnGoogle() {
3636
const capabilities = {
3737
platform: 'windows 10',
3838
browserName: 'chrome',
39-
version: '67.0',
39+
version: 'latest',
4040
resolution: '1280x800',
41-
geoLocation : "US",
42-
network: true,
43-
visual: true,
44-
console: true,
45-
video: true,
41+
// geoLocation : "US",
42+
// network: true,
43+
// visual: true,
44+
// console: true,
45+
// video: true,
4646
name: 'Test 1', // name of the test
4747
build: 'NodeJS build' // name of the build
4848
}
@@ -76,5 +76,6 @@ function searchTextOnGoogle() {
7676
driver.executeScript('lambda-status=failed');
7777
driver.quit();
7878
});
79-
79+
}
8080
searchTextOnGoogle();
81+

0 commit comments

Comments
 (0)