Skip to content

Commit cb8b10c

Browse files
committed
chore: version 11.0.0-next.5
1 parent 9c15dc4 commit cb8b10c

File tree

6 files changed

+20
-23
lines changed

6 files changed

+20
-23
lines changed

ponyracer/e2e/protractor.conf.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ exports.config = {
1616
browserName: 'chrome'
1717
},
1818
directConnect: true,
19+
SELENIUM_PROMISE_MANAGER: false,
1920
baseUrl: 'http://localhost:4200/',
2021
framework: 'jasmine',
2122
jasmineNodeOpts: {

ponyracer/e2e/src/app.e2e-spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ describe('workspace-project App', () => {
88
page = new AppPage();
99
});
1010

11-
it('should display welcome message', () => {
12-
page.navigateTo();
13-
expect(page.getTitleText()).toEqual('ponyracer app is running!');
11+
it('should display welcome message', async () => {
12+
await page.navigateTo();
13+
expect(await page.getTitleText()).toEqual('ponyracer app is running!');
1414
});
1515

1616
afterEach(async () => {

ponyracer/e2e/src/app.po.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { browser, by, element } from 'protractor';
22

33
export class AppPage {
4-
navigateTo(): Promise<unknown> {
5-
return browser.get(browser.baseUrl) as Promise<unknown>;
4+
async navigateTo(): Promise<unknown> {
5+
return browser.get(browser.baseUrl);
66
}
77

8-
getTitleText(): Promise<string> {
9-
return element(by.css('app-root .content span')).getText() as Promise<string>;
8+
async getTitleText(): Promise<string> {
9+
return element(by.css('app-root .content span')).getText();
1010
}
1111
}

ponyracer/e2e/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"target": "es2018",
88
"types": [
99
"jasmine",
10-
"jasminewd2",
1110
"node"
1211
]
1312
}

ponyracer/package.json

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,23 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/animations": "~11.0.0-next.4",
15-
"@angular/common": "~11.0.0-next.4",
16-
"@angular/compiler": "~11.0.0-next.4",
17-
"@angular/core": "~11.0.0-next.4",
18-
"@angular/forms": "~11.0.0-next.4",
19-
"@angular/platform-browser": "~11.0.0-next.4",
20-
"@angular/platform-browser-dynamic": "~11.0.0-next.4",
21-
"@angular/router": "~11.0.0-next.4",
14+
"@angular/animations": "~11.0.0-next.5",
15+
"@angular/common": "~11.0.0-next.5",
16+
"@angular/compiler": "~11.0.0-next.5",
17+
"@angular/core": "~11.0.0-next.5",
18+
"@angular/forms": "~11.0.0-next.5",
19+
"@angular/platform-browser": "~11.0.0-next.5",
20+
"@angular/platform-browser-dynamic": "~11.0.0-next.5",
21+
"@angular/router": "~11.0.0-next.5",
2222
"rxjs": "~6.6.0",
2323
"tslib": "^2.0.0",
2424
"zone.js": "~0.10.2"
2525
},
2626
"devDependencies": {
27-
"@angular-devkit/build-angular": "~0.1100.0-next.4",
28-
"@angular/cli": "~11.0.0-next.4",
29-
"@angular/compiler-cli": "~11.0.0-next.4",
27+
"@angular-devkit/build-angular": "~0.1100.0-next.5",
28+
"@angular/cli": "~11.0.0-next.5",
29+
"@angular/compiler-cli": "~11.0.0-next.5",
3030
"@types/jasmine": "~3.5.0",
31-
"@types/jasminewd2": "~2.0.3",
3231
"@types/node": "^12.11.1",
3332
"codelyzer": "^6.0.0",
3433
"jasmine-core": "~3.6.0",

ponyracer/src/polyfills.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
* BROWSER POLYFILLS
1919
*/
2020

21-
/**
22-
* IE11 requires the following for NgClass support on SVG elements
23-
*/
21+
/** IE11 requires the following for NgClass support on SVG elements */
2422
// import 'classlist.js'; // Run `npm install --save classlist.js`.
2523

2624
/**

0 commit comments

Comments
 (0)