Skip to content

Commit

Permalink
chore(package): update async to version 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cybertk committed Aug 2, 2016
1 parent 65cd71f commit a447bab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -46,7 +46,7 @@
"time-grunt": "~1.4.0"
},
"dependencies": {
"async": "^0.9.0",
"async": "^2.0.1",
"chai": "~3.5.0",
"coffee-errors": "^0.8.6",
"coffee-script": "~1.10.0",
Expand Down
6 changes: 3 additions & 3 deletions test/unit/hooks-test.coffee
Expand Up @@ -321,7 +321,7 @@ describe 'Hooks', () ->
hooks.runBeforeAll callback

it 'should invoke callback', ->
assert.ok callback.calledWithExactly(undefined), callback.printf('%C')
assert.ok callback.calledWithExactly(null), callback.printf('%C')

it 'should run hook', () ->
assert.ok funcs[0].called
Expand All @@ -337,7 +337,7 @@ describe 'Hooks', () ->
hooks.runAfterAll callback

it 'should invoke callback', ->
assert.ok callback.calledWithExactly(undefined), callback.printf('%C')
assert.ok callback.calledWithExactly(null), callback.printf('%C')

it 'should run hook', ->
assert.ok funcs[2].called
Expand Down Expand Up @@ -390,4 +390,4 @@ describe 'Hooks', () ->

it 'should get added to the set of hooks', () ->
hooks.skip test_name
assert.include(hooks.skippedTests, test_name)
assert.include(hooks.skippedTests, test_name)

0 comments on commit a447bab

Please sign in to comment.