blob: 41203f9d83009b00c26e7a85c15d32b16f554253 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
describe('Home', function () {
beforeEach(function () {
browser.get('/');
});
it('should have <my-home>', function () {
var home = element(by.css('vid-app my-home'));
expect(home.isPresent()).toEqual(true);
expect(home.getText()).toEqual("Home Works!");
});
});
|