Files

18 lines
374 B
TypeScript
Raw Permalink Normal View History

2016-11-22 20:07:16 +08:00
'use strict'; // necessary for es6 output in node
2016-10-06 23:25:52 +01:00
import { browser, element, by } from 'protractor';
describe('QuickStart E2E Tests', function () {
let expectedMsg = 'Hello Angular';
beforeEach(function () {
browser.get('');
});
2016-06-01 18:11:58 +02:00
it(`should display: ${expectedMsg}`, function () {
expect(element(by.css('h1')).getText()).toEqual(expectedMsg);
});
});