fix: reset VueNodes.Enabled and UseNewMenu to match execution.spec.ts

This commit is contained in:
bymyself
2026-03-07 23:06:44 -08:00
parent edc5c5995e
commit 2130bbf1c6

View File

@@ -3,6 +3,11 @@ import { expect } from '@playwright/test'
import { comfyPageFixture as test } from '../../../../fixtures/ComfyPage'
test.describe('Node Output Preservation', { tag: ['@widget', '@node'] }, () => {
test.beforeEach(async ({ comfyPage }) => {
await comfyPage.settings.setSetting('Comfy.UseNewMenu', 'Disabled')
await comfyPage.settings.setSetting('Comfy.VueNodes.Enabled', false)
})
test('Execution output widget value survives tab switch', async ({
comfyPage
}) => {