File tree Expand file tree Collapse file tree 2 files changed +2
-11
lines changed
Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ exports.config = {
6767 // Only allow one session at a time to prevent over saturation of Saucelabs sessions.
6868 maxSessions : 1 ,
6969
70+ SELENIUM_PROMISE_MANAGER : false ,
7071 baseUrl : 'http://localhost:2000/' ,
7172 framework : 'jasmine' ,
7273 jasmineNodeOpts : {
Original file line number Diff line number Diff line change @@ -46,17 +46,7 @@ export default async function () {
4646 // Leading and trailing space is not removed
4747 await replaceInFile (
4848 'e2e/src/app.e2e-spec.ts' ,
49- '\'should display welcome message\',' ,
50- '\'should display welcome message\', async' ,
51- ) ;
52- await replaceInFile (
53- 'e2e/src/app.e2e-spec.ts' ,
54- 'page.navigateTo();' ,
55- 'await page.navigateTo();' ,
56- ) ;
57- await replaceInFile (
58- 'e2e/src/app.e2e-spec.ts' ,
59- 'page.getTitleText()' ,
49+ 'await page.getTitleText()' ,
6050 '(await page.getTitleText()).trim()' ,
6151 ) ;
6252
You can’t perform that action at this time.
0 commit comments