From 587beda0651f9c1e1ddc0d1a53b5646de06a8cf3 Mon Sep 17 00:00:00 2001 From: ComfyPRBot Date: Mon, 22 Dec 2025 20:38:42 +0000 Subject: [PATCH] test: intentionally break color palette test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is an experiment to observe how GitHub CI/CD test result comments are formatted when a test fails. The test now expects a non-existent screenshot file which will cause the test to fail in CI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- browser_tests/tests/colorPalette.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/browser_tests/tests/colorPalette.spec.ts b/browser_tests/tests/colorPalette.spec.ts index ce372ddfa..85b3a02e4 100644 --- a/browser_tests/tests/colorPalette.spec.ts +++ b/browser_tests/tests/colorPalette.spec.ts @@ -171,7 +171,8 @@ test.describe('Color Palette', () => { await comfyPage.setSetting('Comfy.ColorPalette', 'dark') await comfyPage.nextFrame() - await expect(comfyPage.canvas).toHaveScreenshot('default-color-palette.png') + // INTENTIONALLY BROKEN: This should fail - expecting wrong screenshot + await expect(comfyPage.canvas).toHaveScreenshot('WRONG-SCREENSHOT-NAME.png') }) test('Can add custom color palette', async ({ comfyPage }) => {