blob: 9ec9d23db6ce56e9dbe202dd03db91a800ded66c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
describe('App', function () {
beforeEach(function () {
browser.get('/');
});
it('should have a title', function () {
expect(browser.getTitle()).toEqual("Angular 2 App | ng2-webpack");
});
it('should have <header>', function () {
expect(element(by.css('my-app header')).isPresent()).toEqual(true);
});
it('should have <main>', function () {
expect(element(by.css('my-app main')).isPresent()).toEqual(true);
});
it('should have a main title', function () {
expect(element(by.css('main h1')).getText()).toEqual('Hello from Angular 2!');
});
it('should have <footer>', function () {
expect(element(by.css('my-app footer')).getText()).toEqual("Webpack Angular 2 Starter");
});
});
|