fix karma tests

by using require('sinon') not incorrect require('../sinon')
This commit is contained in:
Ryan X. Charles 2014-06-17 09:08:58 -07:00
parent e413ec43ef
commit 4ba6eeafb5
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ describe("Unit: controllerUtils", function() {
describe("Unit: Backup Service", function() {
var sinon = require('../sinon');
var sinon = require('sinon');
beforeEach(angular.mock.module('copayApp.services'));
it('should contain a backup service', inject(function(backupService) {
expect(backupService).not.to.equal(null);