Skip to content
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
9 changes: 8 additions & 1 deletion puppeteer/tests/test_root_password.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,13 @@ describe("Agama test", function () {
await page.click("button[type='submit']");
});

it("should require setting the root password", async function () {
await page.waitForSelector("input#rootPassword");
// for simplicity just set the current password
await page.type("input#rootPassword", agamaPassword);
await page.click("button[type='submit']");
});

it("should optionally display the product selection dialog", async function () {
this.timeout(60000);
// Either the main page is displayed (with the storage link) or there is
Expand All @@ -143,7 +150,7 @@ describe("Agama test", function () {
this.skip();
}
});

it("should display overview card", async function () {
await page.waitForSelector("h3::-p-text('Overview')");
});
Expand Down