Skip to content

Commit 5cebecf

Browse files
committed
feat(ci.yml): revert version and removing console
Revert version and removing console from unit test file test #354 Signed-off-by: Hermione Dadheech <hermionedadheech@gmail.com>
1 parent 6b80571 commit 5cebecf

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/wrappedNodeFetch.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ describe('wrappedNodeFetch', () => {
1919
method: 'GET',
2020
};
2121
const response = await wrappedFetch(url, options);
22-
console.log(response,"RESPONSE")
23-
2422
expect(mockFetch).toHaveBeenCalledWith(url, options);
2523
expect(response).toBeInstanceOf(Response);
2624
});
@@ -69,7 +67,6 @@ describe('wrappedNodeFetch', () => {
6967
method: 'GET',
7068
};
7169
const response = await wrappedFetch(url, options);
72-
console.log(response,"RESPONSE")
7370
expect(response).toEqual(mockResponse);
7471
});
7572

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

109105
expect(mockFetch).toHaveBeenCalledWith(url, options);
110106
expect(response).toBeInstanceOf(Response);

0 commit comments

Comments
 (0)