Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reapply Mainstream Publisher test from Smokey #66

Merged
Merged
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
6 changes: 2 additions & 4 deletions tests/publisher.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ test.describe("Publisher", { tag: ["@app-publisher"] }, () => {
await expect(page.locator("#publication-list-container")).toBeVisible();
});

/* This mutates server side state
test(
"should see that the edition has been deleted",
{ tag: ["@app-publisher", "@app-publishing-api", "@notproduction"] },
"Can add and delete an artefact in publisher",
{ tag: ["@app-publisher", "@app-publishing-api", "@not-production"] },
async ({ page }) => {
// Go to the "publisher" landing page
await page.goto("/");
Expand All @@ -35,5 +34,4 @@ test.describe("Publisher", { tag: ["@app-publisher"] }, () => {
await expect(page.getByText("Edition deleted")).toBeVisible();
}
);
*/
});
Loading