fix: enable ShowErrorsTab setting for queue notification tests

The error overlay only appears when Comfy.RightSidePanel.ShowErrorsTab
is enabled. Matches the pattern used in execution.spec.ts.
This commit is contained in:
bymyself
2026-03-16 07:27:34 -07:00
parent 1d231bd988
commit 684261d592

View File

@@ -6,6 +6,10 @@ import {
test.describe('Queue Notification Banners', { tag: '@ui' }, () => {
test.beforeEach(async ({ comfyPage }) => {
await comfyPage.settings.setSetting('Comfy.UseNewMenu', 'Top')
await comfyPage.settings.setSetting(
'Comfy.RightSidePanel.ShowErrorsTab',
true
)
await comfyPage.setup()
})