Skip to content

Commit

Permalink
feat(ci.yml): revert version and removing console
Browse files Browse the repository at this point in the history
Revert version and removing console from unit test file

test #354

Signed-off-by: Hermione Dadheech <[email protected]>
  • Loading branch information
Hermione2408 committed Mar 8, 2023
1 parent 34bdfd5 commit 7270469
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/wrappedNodeFetch.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ describe('wrappedNodeFetch', () => {
method: 'GET',
};
const response = await wrappedFetch(url, options);
console.log(response,"RESPONSE")

expect(mockFetch).toHaveBeenCalledWith(url, options);
expect(response).toBeInstanceOf(Response);
});
Expand Down Expand Up @@ -69,7 +67,6 @@ describe('wrappedNodeFetch', () => {
method: 'GET',
};
const response = await wrappedFetch(url, options);
console.log(response,"RESPONSE")
expect(response).toEqual(mockResponse);
});

Expand Down Expand Up @@ -104,7 +101,6 @@ describe('wrappedNodeFetch', () => {
method: 'GET',
};
const response = await wrappedFetch(url, options);
console.log(response,"RESPONSE")

expect(mockFetch).toHaveBeenCalledWith(url, options);
expect(response).toBeInstanceOf(Response);
Expand Down

0 comments on commit 7270469

Please sign in to comment.