14 lines
308 B
JavaScript
14 lines
308 B
JavaScript
|
// protractor-spec.js
|
||
|
describe('Protractor quick start test', function() {
|
||
|
beforeEach(function() {
|
||
|
browser.get('quickstart/index.html');
|
||
|
});
|
||
|
|
||
|
// #docregion test
|
||
|
it('should display Alice', function() {
|
||
|
expect(element(by.id('output')).getText()).toEqual('Hello Alice');
|
||
|
});
|
||
|
// #enddocregion
|
||
|
});
|
||
|
|