-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated adminconsole version * debug failure to join nodes after HA restore * join controller commands are different on restore * reenable all tests --------- Co-authored-by: emosbaugh <[email protected]>
- Loading branch information
Showing
4 changed files
with
37 additions
and
13 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
e2e/playwright/tests/get-restore-join-controller-command/test.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { test, expect } from '@playwright/test'; | ||
import { login } from '../shared'; | ||
|
||
test('get restore join controller command', async ({ page }) => { | ||
await login(page); | ||
await expect(page.locator('#controller-testNodeType')).toBeChecked(); | ||
await expect(page.locator('.CodeSnippet-copy')).toBeVisible(); | ||
const joinCommand = await page.locator('.react-prism.language-bash').first().textContent(); | ||
console.log(`{"command":"${joinCommand}"}`); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters