Skip to content

Commit c944fe0

Browse files
committed
test experiment
1 parent 206e1b6 commit c944fe0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/container.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ describe("Container", () => {
2828
].sort());
2929
});
3030
it("getContainerMembers- When container is empty - Resolves to an empty array", async () => {
31+
jest.setTimeout(2000)
3132
containerIsEmpty();
3233
const result = await containerLogic.getContainerMembers('https://container.com/');
3334
expect(result).toEqual([]);
@@ -36,7 +37,7 @@ describe("Container", () => {
3637
function containerIsEmpty() {
3738
fetchMock.mockOnceIf(
3839
"https://com/",
39-
" ", // FIXME: https://github.com/jefflau/jest-fetch-mock/issues/189
40+
"", // FIXME: https://github.com/jefflau/jest-fetch-mock/issues/189
4041
{
4142
headers: { "Content-Type": "text/turtle" },
4243
}

0 commit comments

Comments
 (0)