diff --git a/test/unit/services/servicesSpec.js b/test/unit/services/servicesSpec.js index b430385fd..9c3279645 100644 --- a/test/unit/services/servicesSpec.js +++ b/test/unit/services/servicesSpec.js @@ -5,19 +5,6 @@ // var sinon = require('sinon'); -beforeEach(function() { - config.unitToSatoshi = 100; - config.unitName = 'bits'; -}); - -describe('Check config', function() { - - it('unit should be set to BITS in config.js', function() { - expect(config.unitToSatoshi).to.equal(100); - expect(config.unitName).to.equal('bits'); - }); -}); - describe("Unit: Walletfactory Service", function() { beforeEach(angular.mock.module('copayApp.services')); it('should contain a walletFactory service', inject(function(walletFactory) {