ci(ivy): enable size tracking of a minimal cli render3 application (#21792)
PR Close #21792
This commit is contained in:

committed by
Jason Aden

parent
eeab433c8d
commit
ccd0298ec9
14
integration/hello_world__render3__cli/e2e/app.e2e-spec.ts
Normal file
14
integration/hello_world__render3__cli/e2e/app.e2e-spec.ts
Normal 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!');
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user