File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 46
46
"serve" : " http-server" ,
47
47
"serve:silent" : " http-server --silent" ,
48
48
"webdriver" : " webdriver-manager" ,
49
- "test" : " npm-run-all \" webdriver -- update\" build:prod --parallel -r \" webdriver -- start --quiet\" test:ci" ,
49
+ "webdriver:update" : " webdriver-manager update --versions.chrome 73.0.3683.68" ,
50
+ "test" : " npm-run-all \" webdriver-update\" build:prod --parallel -r \" webdriver -- start --quiet\" test:ci" ,
50
51
"test:unit" : " jest --config ./test/jestConfig.json test/unit" ,
51
52
"test:e2e" : " jest --runInBand --config ./test/jestConfig.json test/specs" ,
52
53
"test:ci" : " run-p -r serve:silent test:unit test:e2e" ,
Original file line number Diff line number Diff line change 1
1
import { Capability , Browser } from 'selenium-webdriver' ;
2
2
3
-
4
3
const capabilities = {
5
4
[ Capability . PLATFORM ] : 'WINDOWS' ,
6
- [ Capability . BROWSER_NAME ] : Browser . CHROME
5
+ [ Capability . BROWSER_NAME ] : Browser . CHROME ,
6
+ [ Capability . VERSION ] : 73 ,
7
7
} ;
8
8
9
9
// browserstack specific capabilities - https://www.browserstack.com/automate/capabilities
@@ -14,7 +14,7 @@ if (process.env.CI) {
14
14
capabilities . os = 'WINDOWS' ;
15
15
capabilities . os_version = '10' ;
16
16
capabilities . browser = Browser . CHROME ;
17
- capabilities . browser_verison = '60 ' ;
17
+ capabilities . browser_version = '73 ' ;
18
18
}
19
19
20
20
export default capabilities ;
Original file line number Diff line number Diff line change 1
1
{
2
- "setupTestFrameworkScriptFile " : " ./setupTests.js" ,
2
+ "setupFilesAfterEnv " : [ " ./setupTests.js" ] ,
3
3
"testMatch" : [" **/*.js" ],
4
4
"globals" : {
5
5
"__baseUrl__" : " http://localhost:8080"
You can’t perform that action at this time.
0 commit comments