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

20 lines
506 B
TypeScript
Raw Normal View History

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