From 23b64d4222792ac7e72de1a057126363ec4a4a3a Mon Sep 17 00:00:00 2001 From: bymyself Date: Thu, 5 Feb 2026 13:01:52 -0800 Subject: [PATCH] fix: correct import path in quick start template Amp-Thread-ID: https://ampcode.com/threads/T-019c2f99-6c3b-701e-8f90-4f897ecf85d8 --- .claude/skills/writing-playwright-tests/SKILL.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.claude/skills/writing-playwright-tests/SKILL.md b/.claude/skills/writing-playwright-tests/SKILL.md index f17d9bbc3c..b1cb88d778 100644 --- a/.claude/skills/writing-playwright-tests/SKILL.md +++ b/.claude/skills/writing-playwright-tests/SKILL.md @@ -148,10 +148,11 @@ Avoid these common mistakes: ## Quick Start Template ```typescript +// Path depends on test file location - adjust '../' segments accordingly import { comfyPageFixture as test, comfyExpect as expect -} from './fixtures/ComfyPage' +} from '../fixtures/ComfyPage' test.describe('FeatureName', { tag: ['@canvas'] }, () => { test.afterEach(async ({ comfyPage }) => {