From 11949abfee0d4ef58392a98b68fc6761a28acd25 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sun, 31 May 2026 02:04:37 +0900 Subject: [PATCH] test(codex): handle injected skill guidance on windows --- packages/omo-codex/plugin/test/sync-skills.test.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/omo-codex/plugin/test/sync-skills.test.mjs b/packages/omo-codex/plugin/test/sync-skills.test.mjs index f080421a3..8af55ec58 100644 --- a/packages/omo-codex/plugin/test/sync-skills.test.mjs +++ b/packages/omo-codex/plugin/test/sync-skills.test.mjs @@ -60,7 +60,7 @@ test("#given synced aggregate Codex skills #when inspected #then component and s assert.deepEqual(skillNames, expectedSkills); for (const skillName of expectedSkills) { const content = await readFile(join(skillsRoot, skillName, "SKILL.md"), "utf8"); - assert.match(content, /^---\r?\n/); + assert.match(removeCodexCompatibilityGuidance(content), /^---\r?\n/); } });