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!');
});
});