Skip to content

Commit

Permalink
chore(package): update sinon to version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greenkeeperio-bot authored and janraasch committed Mar 15, 2017
1 parent 07612fb commit 3ae1757
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"mocha": "^3.0.1",
"proxyquire": "^1.4.0",
"should": "^11.0.0",
"sinon": "^1.8.1"
"sinon": "^2.0.0"
},
"engines": {
"npm": ">=1.3.7",
Expand Down
16 changes: 8 additions & 8 deletions test/reporter.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ describe 'gulp-coffeelint', ->
coffeelint = proxyquire '../',
'./lib/reporter': proxyReportHandler

publishStub = sinon.stub spiedReporter.prototype, 'publish', ->
'I am a mocking bird'
publishStub = sinon.stub spiedReporter.prototype, 'publish'
.callsFake -> 'I am a mocking bird'

afterEach ->
spiedReporter.reset()
Expand Down Expand Up @@ -189,8 +189,8 @@ describe 'gulp-coffeelint', ->
coffeelint = proxyquire '../',
'./lib/reporter': proxyReportHandler

publishStub = sinon.stub spiedReporter.prototype, 'publish', ->
'I am a mocking bird'
publishStub = sinon.stub spiedReporter.prototype, 'publish'
.callsFake -> 'I am a mocking bird'

afterEach ->
spiedReporter.reset()
Expand Down Expand Up @@ -334,8 +334,8 @@ describe 'gulp-coffeelint', ->
coffeelint = proxyquire '../',
'./lib/reporter': proxyReportHandler

publishStub = sinon.stub spiedReporter.prototype, 'publish', ->
'I am a mocking bird'
publishStub = sinon.stub spiedReporter.prototype, 'publish'
.callsFake -> 'I am a mocking bird'

afterEach ->
spiedReporter.reset()
Expand Down Expand Up @@ -479,8 +479,8 @@ describe 'gulp-coffeelint', ->
coffeelint = proxyquire '../',
'./lib/reporter': proxyReportHandler

publishStub = sinon.stub spiedReporter.prototype, 'publish', ->
'I am a mocking bird'
publishStub = sinon.stub spiedReporter.prototype, 'publish'
.callsFake -> 'I am a mocking bird'

afterEach ->
spiedReporter.reset()
Expand Down

0 comments on commit 3ae1757

Please sign in to comment.