2016-11-10 18:13:11 -08:00

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