Skip to content

Commit

Permalink
convert test/unit/hook-sync.spec.js to unexpected
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Hiller <boneskull@boneskull.com>
  • Loading branch information
boneskull committed Apr 21, 2018
1 parent d4f6515 commit 6ec01eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/unit/hook-sync.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('serial', function () {
});

it('one', function () {
expect(calls).to.eql([
expect(calls, 'to equal', [
'parent before',
'before',
'before test one'
Expand All @@ -29,7 +29,7 @@ describe('serial', function () {
});

it('two', function () {
expect(calls).to.eql([
expect(calls, 'to equal', [
'parent before',
'before',
'before test one',
Expand All @@ -45,7 +45,7 @@ describe('serial', function () {
});

it('three', function () {
expect(calls).to.eql([
expect(calls, 'to equal', [
'parent before',
'before',
'before test one',
Expand Down Expand Up @@ -75,7 +75,7 @@ describe('serial', function () {
});

after(function () {
expect(calls).to.eql([
expect(calls, 'to equal', [
'parent before',
'before',
'before test one',
Expand Down

0 comments on commit 6ec01eb

Please sign in to comment.