examples: added an example of a crud app

This commit is contained in:
vsavkin
2015-07-01 10:51:36 -07:00
parent 0598226e24
commit 3a8e1661fa
9 changed files with 498 additions and 0 deletions

View File

@ -0,0 +1,5 @@
library examples.e2e_test.order_management_spec;
main() {
}

View File

@ -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();
});
});

View File

@ -0,0 +1,5 @@
library examples.e2e_test.person_management_spec;
main() {
}

View File

@ -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();
});
});