change var name from copay to copayApp
This commit is contained in:
parent
e69032e951
commit
02af76cdb9
2 changed files with 8 additions and 8 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var copay = window.copay = angular.module('copay',[
|
var copayApp = window.copayApp = angular.module('copay',[
|
||||||
'ngRoute',
|
'ngRoute',
|
||||||
'mm.foundation',
|
'mm.foundation',
|
||||||
'monospaced.qrcode',
|
'monospaced.qrcode',
|
||||||
|
|
|
||||||
|
|
@ -6,31 +6,31 @@ describe("Unit: Testing Controllers", function() {
|
||||||
beforeEach(angular.mock.module('copay'));
|
beforeEach(angular.mock.module('copay'));
|
||||||
|
|
||||||
it('should have a AddressesController controller', function() {
|
it('should have a AddressesController controller', function() {
|
||||||
expect(copay.AddressesController).not.to.equal(null);
|
expect(copayApp.AddressesController).not.to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should have a BackupController controller', function() {
|
it('should have a BackupController controller', function() {
|
||||||
expect(copay.Backupcontroller).not.to.equal(null);
|
expect(copayApp.Backupcontroller).not.to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should have a HeaderController controller', function() {
|
it('should have a HeaderController controller', function() {
|
||||||
expect(copay.HeaderController).not.to.equal(null);
|
expect(copayApp.HeaderController).not.to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should have a SendController controller', function() {
|
it('should have a SendController controller', function() {
|
||||||
expect(copay.SendController).not.to.equal(null);
|
expect(copayApp.SendController).not.to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should have a SetupController controller', function() {
|
it('should have a SetupController controller', function() {
|
||||||
expect(copay.SetupController).not.to.equal(null);
|
expect(copayApp.SetupController).not.to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should have a SigninController controller', function() {
|
it('should have a SigninController controller', function() {
|
||||||
expect(copay.SigninController).not.to.equal(null);
|
expect(copayApp.SigninController).not.to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should have a TransactionsController controller', function() {
|
it('should have a TransactionsController controller', function() {
|
||||||
expect(copay.TransactionsController).not.to.equal(null);
|
expect(copayApp.TransactionsController).not.to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue