Skip to content

Commit

Permalink
convert test/unit/hook-sync-nested.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 6d6b632 commit 4837a6a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/unit/hook-sync-nested.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ describe('serial', function () {
});

it('foo', function () {
expect(calls).to.eql([
expect(calls, 'to equal', [
'parent before',
'parent before test foo'
]);
calls.push('foo');
});

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

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

it('two', function () {
expect(calls).to.eql([
expect(calls, 'to equal', [
'parent before',
'parent before test foo',
'foo',
Expand Down

0 comments on commit 4837a6a

Please sign in to comment.