Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
fix tests for fetch-mock 9.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wheresrhys committed Nov 26, 2020
1 parent dfc5b09 commit f6b1024
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion __tests__/jest-extensions-delete.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ describe('jest extensions - delete', () => {
});

it('toBeDone should be falsy', () => {
expect(fetch).not.toBeDone();
expect(fetch).not.toBeDone('http://example.com/path');
});
});
Expand Down
1 change: 0 additions & 1 deletion __tests__/jest-extensions-get.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ describe('jest extensions - get', () => {
});

it('toBeDone should be falsy', () => {
expect(fetch).not.toBeDone();
expect(fetch).not.toBeDone('http://example.com/path');
});
});
Expand Down
1 change: 0 additions & 1 deletion __tests__/jest-extensions-head.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ describe('jest extensions - head', () => {
});

it('toBeDone should be falsy', () => {
expect(fetch).not.toBeDone();
expect(fetch).not.toBeDone('http://example.com/path');
});
});
Expand Down
1 change: 0 additions & 1 deletion __tests__/jest-extensions-patch.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ describe('jest extensions - patch', () => {
});

it('toBeDone should be falsy', () => {
expect(fetch).not.toBeDone();
expect(fetch).not.toBeDone('http://example.com/path');
});
});
Expand Down
1 change: 0 additions & 1 deletion __tests__/jest-extensions-post.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ describe('jest extensions - post', () => {
});

it('toBeDone should be falsy', () => {
expect(fetch).not.toBeDone();
expect(fetch).not.toBeDone('http://example.com/path');
});
});
Expand Down
1 change: 0 additions & 1 deletion __tests__/jest-extensions-put.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ describe('jest extensions - put', () => {
});

it('toBeDone should be falsy', () => {
expect(fetch).not.toBeDone();
expect(fetch).not.toBeDone('http://example.com/path');
});
});
Expand Down

0 comments on commit f6b1024

Please sign in to comment.