Skip to content

Commit

Permalink
chore(project): update sinon
Browse files Browse the repository at this point in the history
  • Loading branch information
bendrucker committed Dec 12, 2020
1 parent 5546399 commit ccecad4
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 84 deletions.
141 changes: 62 additions & 79 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
"np": "^2.16.1",
"npm-run-all": "^4.1.2",
"resolve": "^1.1.6",
"sinon": "^4.1.2",
"sinon-chai": "^2.14.0",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0",
"touch": "^3.1.0",
"tsify": "^3.0.3",
"typescript": "^2.6.1",
Expand Down
6 changes: 3 additions & 3 deletions test/spec/pluginSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ describe('karma-browserify', function() {
plugin.preprocess(bundleFile, [ testFile ], function() {

// reset spy on bundle
bundle.update.reset();
bundle.update.resetHistory();

// when
// update bundle file
Expand Down Expand Up @@ -411,7 +411,7 @@ describe('karma-browserify', function() {
plugin.preprocess(bundleFile, [ testFile ], function() {

// reset spy on bundle
bundle.update.reset();
bundle.update.resetHistory();

// when
// update bundle file
Expand Down Expand Up @@ -449,7 +449,7 @@ describe('karma-browserify', function() {
plugin.preprocess(bundleFile, [ testFile ], function() {

// reset spy on bundle
bundle.update.reset();
bundle.update.resetHistory();

// when
// remove file
Expand Down

0 comments on commit ccecad4

Please sign in to comment.