2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-11-10 18:13:11 -08:00
|
|
|
import {browser} from 'protractor';
|
2015-07-01 10:51:36 -07:00
|
|
|
|
2019-02-01 14:46:38 +01:00
|
|
|
import {verifyNoBrowserErrors} from '../../../e2e_util/e2e_util';
|
|
|
|
|
2015-07-01 10:51:36 -07:00
|
|
|
describe('Person Management CRUD', function() {
|
2019-02-01 14:46:38 +01:00
|
|
|
const URL = '/';
|
2015-07-01 10:51:36 -07:00
|
|
|
|
|
|
|
it('should work', function() {
|
|
|
|
browser.get(URL);
|
|
|
|
verifyNoBrowserErrors();
|
|
|
|
});
|
|
|
|
});
|