Skip to content

Commit

Permalink
ignore e2e (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmcb55 committed Sep 5, 2023
1 parent 138ba37 commit d4d5409
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions e2e/node/ExtractTransform-display.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ describe("All data sources", () => {
const resourceDetails: CollectionOfResources = passportTransform(
credential,
response,
`${process.env.SOLID_STORAGE_ROOT!}${APPLICATION_ENTRYPOINT}`
`${
process.env.SOLID_STORAGE_ROOT ||
"https://valid-iri-if-none-provided.example.com/"
}${APPLICATION_ENTRYPOINT}`
);
expect(resourceDetails.rdfResources).toHaveLength(3);

Expand Down Expand Up @@ -137,7 +140,10 @@ describe("All data sources", () => {
const resourceDetails: CollectionOfResources = hobbyTransform(
credential,
response,
`${process.env.SOLID_STORAGE_ROOT!}${APPLICATION_ENTRYPOINT}`
`${
process.env.SOLID_STORAGE_ROOT ||
"https://valid-iri-if-none-provided.example.com/"
}${APPLICATION_ENTRYPOINT}`
);
expect(resourceDetails.rdfResources).toHaveLength(4);

Expand Down Expand Up @@ -178,7 +184,10 @@ describe("All data sources", () => {
companiesHouseUkTransformCompany(
credential,
response,
`${process.env.SOLID_STORAGE_ROOT!}${APPLICATION_ENTRYPOINT}`
`${
process.env.SOLID_STORAGE_ROOT ||
"https://valid-iri-if-none-provided.example.com/"
}${APPLICATION_ENTRYPOINT}`
);

const companyResource = getThingOfTypeFromCollectionMandatoryOne(
Expand Down

0 comments on commit d4d5409

Please sign in to comment.