docs(aio): ward's changes

This commit is contained in:
Ward Bell
2017-06-19 23:32:30 -07:00
committed by Hans
parent b1dab181e0
commit 37cdc4f759
18 changed files with 1095 additions and 494 deletions

View File

@ -0,0 +1,15 @@
'use strict'; // necessary for es6 output in node
import { browser, element, by } from 'protractor';
describe('Docs Style Guide', function () {
let _title = 'Authors Style Guide Sample';
beforeAll(function () {
browser.get('');
});
it('should display correct title: ' + _title, function () {
expect(element(by.css('h1')).getText()).toEqual(_title);
});
});