mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
feature(package) sinon-called-with-diff v3.0.0
This commit is contained in:
parent
a6f0a8723c
commit
d4d9a5d30f
2 changed files with 4 additions and 4 deletions
|
|
@ -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();
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue