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 = {
67
67
// Only allow one session at a time to prevent over saturation of Saucelabs sessions.
68
68
maxSessions : 1 ,
69
69
70
+ SELENIUM_PROMISE_MANAGER : false ,
70
71
baseUrl : 'http://localhost:2000/' ,
71
72
framework : 'jasmine' ,
72
73
jasmineNodeOpts : {
Original file line number Diff line number Diff line change @@ -46,17 +46,7 @@ export default async function () {
46
46
// Leading and trailing space is not removed
47
47
await replaceInFile (
48
48
'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()' ,
60
50
'(await page.getTitleText()).trim()' ,
61
51
) ;
62
52
You can’t perform that action at this time.
0 commit comments