5042b3021c
* chore(test): add protractor4 * fix lint, remove boilerplate files, fix less gen * separate scripts between package.json * ignore a2docs.css in boilerplate * remove tslint in _examples
17 lines
396 B
TypeScript
17 lines
396 B
TypeScript
'use strict'; // necessary for es6 output in node
|
|
|
|
import { browser, element, by } from 'protractor';
|
|
|
|
describe('Documentation StyleGuide E2E Tests', function() {
|
|
|
|
let expectedMsg = 'My First Angular App';
|
|
|
|
beforeEach(function () {
|
|
browser.get('');
|
|
});
|
|
|
|
it('should display: ' + expectedMsg, function() {
|
|
expect(element(by.id('output')).getText()).toEqual(expectedMsg);
|
|
});
|
|
});
|