We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 206e1b6 commit c944fe0Copy full SHA for c944fe0
1 file changed
test/container.test.ts
@@ -28,6 +28,7 @@ describe("Container", () => {
28
].sort());
29
});
30
it("getContainerMembers- When container is empty - Resolves to an empty array", async () => {
31
+ jest.setTimeout(2000)
32
containerIsEmpty();
33
const result = await containerLogic.getContainerMembers('https://container.com/');
34
expect(result).toEqual([]);
@@ -36,7 +37,7 @@ describe("Container", () => {
36
37
function containerIsEmpty() {
38
fetchMock.mockOnceIf(
39
"https://com/",
- " ", // FIXME: https://github.com/jefflau/jest-fetch-mock/issues/189
40
+ "", // FIXME: https://github.com/jefflau/jest-fetch-mock/issues/189
41
{
42
headers: { "Content-Type": "text/turtle" },
43
}
0 commit comments