feature(package) sinon-called-with-diff v3.0.0

This commit is contained in:
coderaiser 2018-11-05 18:40:05 +02:00
parent a6f0a8723c
commit d4d9a5d30f
2 changed files with 4 additions and 4 deletions

View file

@ -28,7 +28,7 @@ test('cloudcmd: client: vim: find', (t) => {
find('');
t.ok(setCurrentByName.calledWith(null), 'should call setCurrentByName');
t.ok(setCurrentByName.calledWith(undefined), 'should call setCurrentByName');
t.end();
});
@ -39,7 +39,7 @@ test('cloudcmd: client: vim: findNext', (t) => {
findNext();
t.ok(setCurrentByName.calledWith(null), 'should call setCurrentByName');
t.ok(setCurrentByName.calledWith(undefined), 'should call setCurrentByName');
t.end();
});
@ -50,7 +50,7 @@ test('cloudcmd: client: vim: findPrevious', (t) => {
DOM.setCurrentByName = setCurrentByName;
findPrevious();
t.ok(setCurrentByName.calledWith(null), 'should call setCurrentByName');
t.ok(setCurrentByName.calledWith(undefined), 'should call setCurrentByName');
t.end();
});

View file

@ -208,7 +208,7 @@
"scroll-into-view-if-needed": "^2.2.5",
"serviceworker-webpack-plugin": "^1.0.1",
"sinon": "^7.0.0",
"sinon-called-with-diff": "^2.0.0",
"sinon-called-with-diff": "^3.0.0",
"smalltalk": "^3.1.0",
"style-loader": "^0.23.0",
"stylelint": "^9.0.0",