2016-06-15 21:01:03 -04:00
|
|
|
/// <reference path='../_protractor/e2e.d.ts' />
|
|
|
|
'use strict';
|
2016-06-01 16:58:01 -04:00
|
|
|
describe('Documentation StyleGuide E2E Tests', function() {
|
2016-05-30 14:05:09 -04:00
|
|
|
|
|
|
|
let expectedMsg = 'My First Angular 2 App';
|
|
|
|
|
2016-06-01 16:58:01 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
browser.get('');
|
2016-05-30 14:05:09 -04:00
|
|
|
});
|
|
|
|
|
2016-06-01 16:58:01 -04:00
|
|
|
it('should display: ' + expectedMsg, function() {
|
|
|
|
expect(element(by.id('output')).getText()).toEqual(expectedMsg);
|
2016-05-30 14:05:09 -04:00
|
|
|
});
|
|
|
|
});
|