ci(ivy): enable size tracking of a minimal cli render3 application (#21792)

PR Close #21792
This commit is contained in:
Chuck Jazdzewski
2018-01-25 16:43:29 -08:00
committed by Jason Aden
parent eeab433c8d
commit ccd0298ec9
29 changed files with 631 additions and 4 deletions

View File

@ -0,0 +1,14 @@
import { AppPage } from './app.po';
describe('hw2 App', () => {
let page: AppPage;
beforeEach(() => {
page = new AppPage();
});
it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Welcome to app!');
});
});

View File

@ -0,0 +1,11 @@
import { browser, by, element } from 'protractor';
export class AppPage {
navigateTo() {
return browser.get('/');
}
getParagraphText() {
return element(by.css('app-root h1')).getText();
}
}

View File

@ -0,0 +1,14 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/e2e",
"baseUrl": "./",
"module": "commonjs",
"target": "es5",
"types": [
"jasmine",
"jasminewd2",
"node"
]
}
}