angular/modules/examples/e2e_test/person_management/person_management_spec.ts
Julie Ralph f529236bfc refactor(test): rename test_lib to testing
Old test_lib is now testing_internal
test_lib_public is now testing
2015-10-13 10:36:49 -07:00

11 lines
270 B
TypeScript

import {verifyNoBrowserErrors} from 'angular2/src/testing/e2e_util';
describe('Person Management CRUD', function() {
var URL = 'examples/src/person_management/index.html';
it('should work', function() {
browser.get(URL);
verifyNoBrowserErrors();
});
});