The serve-and-sync tasks wait for `_copy-example-boilerplate` to finish Differentiates app compile, spec compile, and test failures StyleGuide (for documentators) up-to-date
14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
/// <reference path="../_protractor/e2e.d.ts" />
|
|
describe('Documentation StyleGuide E2E Tests', function() {
|
|
|
|
let expectedMsg = 'My First Angular 2 App';
|
|
|
|
beforeEach(function () {
|
|
browser.get('');
|
|
});
|
|
|
|
it('should display: ' + expectedMsg, function() {
|
|
expect(element(by.id('output')).getText()).toEqual(expectedMsg);
|
|
});
|
|
});
|