rename walletFactory to identity. Test passing

This commit is contained in:
Matias Alejo Garcia 2014-09-26 05:00:43 -03:00
commit eb9ab115d7
14 changed files with 652 additions and 115 deletions

609
test/test.Identity.js Normal file

File diff suppressed because one or more lines are too long

View file

@ -10,8 +10,8 @@ beforeEach(angular.mock.module('copayApp'));
describe("Unit: Walletfactory Service", function() {
beforeEach(angular.mock.module('copayApp.services'));
it('should contain a walletFactory service', inject(function(walletFactory) {
expect(walletFactory).not.to.equal(null);
it('should contain a identity service', inject(function(identity) {
expect(identity).not.to.equal(null);
}));
});