test(publish): entferne toten index-mkdir im allPostDirs-fixture

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jörg Lohrer 2026-04-21 09:14:16 +02:00
parent 0c2e99dfeb
commit f977516552
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ Deno.test('allPostDirs: findet posts in sprach-unterordnern', async () => {
await Deno.writeTextFile(`${tmp}/de/beta/index.md`, '---\n---')
await Deno.mkdir(`${tmp}/en/alpha`, { recursive: true })
await Deno.writeTextFile(`${tmp}/en/alpha/index.md`, '---\n---')
await Deno.mkdir(`${tmp}/de/_draft/index`, { recursive: true })
await Deno.mkdir(`${tmp}/de/_draft`, { recursive: true })
await Deno.writeTextFile(`${tmp}/de/_draft/index.md`, '---\n---')
const result = await allPostDirs(tmp)