Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions e2e/browser/test-app/components/solidClient/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ const CreateResourceButton = ({
getSourceIri(
await createContainerInContainer(parentContainerUrl, {
fetch: getDefaultSession().fetch,
})
)
}),
),
);
}}
data-testid="createContainer"
Expand Down
8 changes: 4 additions & 4 deletions e2e/browser/test/e2e.playwright.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ test("creating and removing empty Containers", async ({ page, auth }) => {

// A root container should have been found.
await expect(page.getByTestId("parentContainerUrl")).toContainText(
/https:\/\//
/https:\/\//,
);
// No child container should be available yet.
await expect(page.getByTestId("childContainerUrl")).toContainText("None");
Expand All @@ -47,9 +47,9 @@ test("creating and removing empty Containers", async ({ page, auth }) => {

// The child container should have been created under the parent
await expect(
page.locator("span[data-testid=childContainerUrl]")
page.locator("span[data-testid=childContainerUrl]"),
).toContainText(
await page.locator("span[data-testid=childContainerUrl]").allInnerTexts()
await page.locator("span[data-testid=childContainerUrl]").allInnerTexts(),
);

await Promise.all([
Expand All @@ -62,6 +62,6 @@ test("creating and removing empty Containers", async ({ page, auth }) => {

// The child container should have been deleted.
await expect(
page.locator("span[data-testid=childContainerUrl]")
page.locator("span[data-testid=childContainerUrl]"),
).toContainText("None");
});
2 changes: 1 addition & 1 deletion eslint-configs/eslint-config-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-playwright": "^0.15.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.0.0",
"jest": ">=29.6.2",
"prettier": ">=2.7.1"
},
Expand Down
Loading