Add sinon to devDeps for mocking

This commit is contained in:
Tankred Hase 2016-02-08 15:02:02 +07:00
parent 33d8d0fd11
commit c38d41036e
3 changed files with 12 additions and 1 deletions

View File

@ -29,6 +29,8 @@
"afterEach": true,
"escape": true,
"unescape": true,
"postMessage": true
"postMessage": true,
"resolves": true,
"rejects": true
}
}

View File

@ -55,6 +55,7 @@
"istanbul": "~0.4.1",
"mocha": "~2.3.4",
"rusha": "^0.8.3",
"sinon": "^1.17.3",
"whatwg-fetch": "~0.11.0",
"zlibjs": "~0.2.0"
},

View File

@ -1,3 +1,11 @@
(typeof window !== 'undefined' ? window : global).resolves = function(val) {
return new Promise(function(res) { res(val); });
};
(typeof window !== 'undefined' ? window : global).rejects = function(val) {
return new Promise(function(res, rej) { rej(val); });
};
describe('Unit Tests', function () {
require('./general');
require('./crypto');