fix(deps): Update to Comunica v2

This commit is contained in:
Joachim Van Herwegen
2022-04-20 13:49:20 +02:00
parent b84788e05f
commit 1de1f7c12a
7 changed files with 3501 additions and 5747 deletions

View File

@@ -33,8 +33,7 @@ describe('A TokenOwnershipValidator', (): void => {
function mockDereference(qq?: Quad): any {
rdfDereferenceMock.dereference.mockImplementation((uri: string): any => ({
uri,
quads: Readable.from(qq ? [ qq ] : []),
exists: true,
data: Readable.from(qq ? [ qq ] : []),
}));
}

View File

@@ -34,8 +34,7 @@ describe('FetchUtil', (): void => {
}
return {
uri,
quads: Readable.from(quads),
exists: true,
data: Readable.from(quads),
};
});
}