chore: fix tests after picocrank update

This commit is contained in:
jamesread 2026-07-24 16:57:46 +01:00
parent e1f8c01fe5
commit 9702b42712
2 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ describe('config: dashboards with basic fieldsets', function () {
await openSidebar()
const navigationLinks = await getNavigationLinks()
assert.equal(navigationLinks.length, 5, 'Expected the nav to only have 5 links') // test dashboard + logs + diagnostics + entities + separator
assert.equal(navigationLinks.length, 4, 'Expected the nav to only have 4 links') // test dashboard + entities + logs + diagnostics
const firstLink = await navigationLinks[0]
@ -44,7 +44,7 @@ describe('config: dashboards with basic fieldsets', function () {
// Check that we have the expected number of fieldsets
const dashboardRows = await webdriver.findElements(By.css('.dashboard-row'))
expect(dashboardRows).to.have.length(3, 'Expected 3 dashboard rows total')
// Check that we have fieldsets with the expected titles
const fieldsetTitles = []
for (let i = 0; i < dashboardRows.length; i++) {
@ -54,7 +54,7 @@ describe('config: dashboards with basic fieldsets', function () {
fieldsetTitles.push(title)
}
}
// We should have fieldsets for: Fieldset 1, Fieldset 2, and Actions fieldsets
expect(fieldsetTitles).to.include('Fieldset 1')
expect(fieldsetTitles).to.include('Fieldset 2')

View File

@ -32,6 +32,6 @@ describe('config: empty dashboards are hidden', function () {
const navigationLinks = await getNavigationLinks()
expect(navigationLinks).to.not.be.empty
expect(navigationLinks.length).to.be.equal(4, 'Expected the nav to only have 4 links')
expect(navigationLinks.length).to.be.equal(3, 'Expected the nav to only have 3 links') // entities + logs + diagnostics
})
})