Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Schmid committed Jul 7, 2018
1 parent 9ab0a9b commit b0920c3
Show file tree
Hide file tree
Showing 12 changed files with 799 additions and 1,081 deletions.
2 changes: 1 addition & 1 deletion lib/packagers/index.test.js
Expand Up @@ -22,7 +22,7 @@ describe('packagers factory', () => {
let module;

before(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();
npmMock = {
hello: 'I am NPM'
};
Expand Down
2 changes: 1 addition & 1 deletion lib/packagers/npm.test.js
Expand Up @@ -19,7 +19,7 @@ describe('npm', () => {
let npmModule;

before(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();
sandbox.usingPromise(BbPromise.Promise);

sandbox.stub(Utils, 'spawnProcess');
Expand Down
2 changes: 1 addition & 1 deletion lib/packagers/yarn.test.js
Expand Up @@ -18,7 +18,7 @@ describe('yarn', () => {
let yarnModule;

before(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();
sandbox.usingPromise(BbPromise.Promise);

sandbox.stub(Utils, 'spawnProcess');
Expand Down
2 changes: 1 addition & 1 deletion lib/utils.test.js
Expand Up @@ -18,7 +18,7 @@ describe('Utils', () => {
let sandbox;

before(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();
});

after(() => {
Expand Down

0 comments on commit b0920c3

Please sign in to comment.