chore(dockerignore): ignore all nested node_modules

This commit is contained in:
Nicolas Meienberger
2026-07-11 12:23:45 +02:00
parent 364bf23163
commit 365ac1e6e6
2 changed files with 2 additions and 1 deletions

View File

@@ -25,3 +25,4 @@ node_modules/**
dist/**
.output/**
app/test/integration/artifacts/**
**/node_modules/**

View File

@@ -510,7 +510,7 @@ test("can delete a snapshot from the repository snapshots tab", async ({ page },
await expect(page.getByText("Delete 1 snapshots?")).toBeVisible();
await page.getByRole("button", { name: "Delete 1 snapshots" }).click();
await expect(page.getByText("Snapshots deleted successfully")).toBeVisible({ timeout: 30000 });
await expect(page.getByText("Snapshot deleted")).toBeVisible({ timeout: 30000 });
await expect(page.getByRole("checkbox", { name: /Select snapshot/ })).toHaveCount(0);
await expect(page.getByRole("link", { name: names.backupName, exact: true })).toHaveCount(0);
});