angular-cn/modules/playground/e2e_test/person_management/person_management_spec.ts

21 lines
470 B
TypeScript

/**
* @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
*/
import {browser} from 'protractor';
import {verifyNoBrowserErrors} from '../../../e2e_util/e2e_util';
describe('Person Management CRUD', function() {
const URL = '/';
it('should work', function() {
browser.get(URL);
verifyNoBrowserErrors();
});
});