Skip to content

Commit 59a18fd

Browse files
committed
Upgrade dependencies
1 parent 009e041 commit 59a18fd

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const StubCollections = (() => {
4040

4141
/* Private API */
4242

43-
privateApi.sandbox = sinon.sandbox.create();
43+
privateApi.sandbox = sinon.createSandbox();
4444
privateApi.pairs = new Map();
4545
privateApi.collections = [];
4646
privateApi.symbols = Object.keys(Mongo.Collection.prototype);

package.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Package.describe({
55
name: 'hwillson:stub-collections',
6-
version: '1.0.9',
6+
version: '1.0.10',
77
summary: 'Stub out Meteor collections with in-memory local collections.',
88
documentation: 'README.md',
99
git: 'https://github.com/hwillson/meteor-stub-collections.git',
@@ -12,7 +12,7 @@ Package.describe({
1212

1313
Npm.depends({
1414
chai: '4.1.2',
15-
sinon: '5.0.10',
15+
sinon: '6.0.1',
1616
});
1717

1818
Package.onUse(function onUse(api) {
@@ -31,7 +31,8 @@ Package.onTest(function onTest(api) {
3131
3232
'ecmascript',
3333
'mongo',
34-
'meteortesting:[email protected]',
34+
'lmieulet:[email protected]', // Needed until https://github.com/meteortesting/meteor-mocha/pull/69 is merged
35+
'meteortesting:[email protected]',
3536
]);
3637
api.mainModule('tests.js');
3738
});

0 commit comments

Comments
 (0)