diff --git a/package-lock.json b/package-lock.json index bc579c7..163cb13 100644 --- a/package-lock.json +++ b/package-lock.json @@ -31695,6 +31695,7 @@ } }, "packages/demo-react": { + "name": "@ldo/demo-react", "version": "0.0.1-alpha.19", "dependencies": { "@inrupt/solid-client-authn-browser": "^2.0.0", diff --git a/packages/jsonld-dataset-proxy/src/util/nodeToJsonldRepresentation.ts b/packages/jsonld-dataset-proxy/src/util/nodeToJsonldRepresentation.ts index d1dcd08..62a3093 100644 --- a/packages/jsonld-dataset-proxy/src/util/nodeToJsonldRepresentation.ts +++ b/packages/jsonld-dataset-proxy/src/util/nodeToJsonldRepresentation.ts @@ -34,6 +34,7 @@ export function literalToJsonldRepresentation(literal: Literal) { case "http://www.w3.org/2001/XMLSchema#integer": case "http://www.w3.org/2001/XMLSchema#byte": case "http://www.w3.org/2001/XMLSchema#decimal": + case "http://www.w3.org/2001/XMLSchema#double": case "http://www.w3.org/2001/XMLSchema#int": case "http://www.w3.org/2001/XMLSchema#long": case "http://www.w3.org/2001/XMLSchema#negativeInteger": diff --git a/packages/solid-react/test/Integration.test.tsx b/packages/solid-react/test/Integration.test.tsx index 8ab44cc..4d2d28e 100644 --- a/packages/solid-react/test/Integration.test.tsx +++ b/packages/solid-react/test/Integration.test.tsx @@ -96,7 +96,9 @@ describe("Integration Tests", () => { await screen.findByText("Hidden"); fireEvent.click(screen.getByText("Show Component")); await screen.findByText("Loading"); - const resourceStatus2 = await screen.findByRole("status"); + const resourceStatus2 = await screen.findByRole("status", undefined, { + timeout: 5000, + }); expect(resourceStatus2.innerHTML).toBe("dataReadSuccess"); });