Merge pull request #45 from darkwing/add-js-tests

Add SW tests for 0.1.0
This commit is contained in:
David Walsh 2016-03-03 09:47:06 -06:00
Родитель 7ef58b68f4 f6fb16f57b
Коммит 9254974b3b
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -97,8 +97,9 @@ describe('tests', function() {
it('Debug option works properly', function() {
// We don't want to muddle up the user's console if they option isn't on
wpSwCache.debug = false;
console.log = console.warn = sinon.spy();
wpSwCache.debug = false;
wpSwCache.log('Hello');
assert.equal(console.log.callCount, 0);