2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-06-23 12:47:54 -04:00
|
|
|
*
|
|
|
|
* 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 21:13:11 -05:00
|
|
|
import {browser} from 'protractor';
|
2015-07-01 13:51:36 -04:00
|
|
|
|
2020-04-24 16:14:28 -04:00
|
|
|
import {verifyNoBrowserErrors} from '../../../../dev-infra/benchmark/driver-utilities';
|
2019-02-01 08:46:38 -05:00
|
|
|
|
2015-07-01 13:51:36 -04:00
|
|
|
describe('Person Management CRUD', function() {
|
2019-02-01 08:46:38 -05:00
|
|
|
const URL = '/';
|
2015-07-01 13:51:36 -04:00
|
|
|
|
|
|
|
it('should work', function() {
|
|
|
|
browser.get(URL);
|
|
|
|
verifyNoBrowserErrors();
|
|
|
|
});
|
|
|
|
});
|