examples: added an example of a crud app
This commit is contained in:
@ -0,0 +1,5 @@
|
||||
library examples.e2e_test.order_management_spec;
|
||||
|
||||
main() {
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
import {verifyNoBrowserErrors} from 'angular2/src/test_lib/e2e_util';
|
||||
|
||||
describe('Order Management CRUD', function() {
|
||||
var URL = 'examples/src/order_management/index.html';
|
||||
|
||||
it('should work', function() {
|
||||
browser.get(URL);
|
||||
verifyNoBrowserErrors();
|
||||
});
|
||||
});
|
@ -0,0 +1,5 @@
|
||||
library examples.e2e_test.person_management_spec;
|
||||
|
||||
main() {
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
import {verifyNoBrowserErrors} from 'angular2/src/test_lib/e2e_util';
|
||||
|
||||
describe('Person Management CRUD', function() {
|
||||
var URL = 'examples/src/person_management/index.html';
|
||||
|
||||
it('should work', function() {
|
||||
browser.get(URL);
|
||||
verifyNoBrowserErrors();
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user