Rename SideBar to Sidebar (#422)

* Rename SideBar to Sidebar

* rename files

* rename files
This commit is contained in:
Chenlei Hu
2024-08-14 11:27:23 -04:00
committed by GitHub
parent c6b6bdcb67
commit a68f7c680b
16 changed files with 54 additions and 54 deletions

View File

@@ -44,7 +44,7 @@ test.describe('Menu', () => {
})
test('Can register sidebar tab', async ({ comfyPage }) => {
const initialChildrenCount = await comfyPage.menu.sideToolBar.evaluate(
const initialChildrenCount = await comfyPage.menu.sideToolbar.evaluate(
(el) => el.children.length
)
@@ -62,7 +62,7 @@ test.describe('Menu', () => {
})
await comfyPage.nextFrame()
const newChildrenCount = await comfyPage.menu.sideToolBar.evaluate(
const newChildrenCount = await comfyPage.menu.sideToolbar.evaluate(
(el) => el.children.length
)
expect(newChildrenCount).toBe(initialChildrenCount + 1)