Skip to content

Commit 35096fd

Browse files
authored
Create app.e2e-spec.ts
1 parent 9dfa187 commit 35096fd

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

e2e/src/app.e2e-spec.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { AppPage } from './app.po';
2+
3+
describe('workspace-project App', () => {
4+
let page: AppPage;
5+
6+
beforeEach(() => {
7+
page = new AppPage();
8+
});
9+
10+
it('should display welcome message', () => {
11+
page.navigateTo();
12+
expect(page.getParagraphText()).toEqual('Welcome to myapp!');
13+
});
14+
});

0 commit comments

Comments
 (0)