Sprint: regril (#170)
* ST-cmowjelb1: Parser: bestand-relatieve regel + hint-detectie in YAMLParseError-tak - Voeg `hint?: string` toe aan PlanParseError type - Bereken bestand-relatief regelnummer (yamlLine + 1 voor de openings-`---`) - Detecteer markdown-patronen (numbered/bullet lijst) op de offending regel - Zet Nederlandstalige hint bij markdown-match - Render hint als "Tip: …" onder het foutbericht in IdeaMdEditor * ST-cmowjeq3q: UI: render hint apart onder error-message in IdeaMdEditor Vervang <span block mt-0.5 text-status-blocked/80> door <div mt-1 text-foreground/80> voor de Tip-hint per plan-spec (MD3-token, geen status-kleur). * ST-cmowjewfg: Test: parser geeft hint bij markdown-in-frontmatter Voeg twee Vitest-cases toe: - hints when markdown sneaks into frontmatter: fixture met [unclosed op een genummerde markdown-regel triggert YAMLParseError op die regel (plain lijst zonder unclosed flow parset als geldig YAML) - omits hint for non-markdown yaml errors: unclosed bracket zonder markdown-patroon geeft geen hint
This commit is contained in:
parent
8c63ba377d
commit
79005dc777
3 changed files with 54 additions and 7 deletions
|
|
@ -62,6 +62,41 @@ body
|
|||
}
|
||||
})
|
||||
|
||||
it('hints when markdown sneaks into frontmatter', () => {
|
||||
// "1. **...**: [unclosed" triggers a YAMLParseError at the markdown line
|
||||
// (plain-list-with-bold parses as valid YAML without an unclosed flow)
|
||||
const broken = `---
|
||||
pbi:
|
||||
title: Test
|
||||
priority: 2
|
||||
stories:
|
||||
1. **Toggle zichtbaar in productie**: [unclosed
|
||||
---
|
||||
|
||||
body
|
||||
`
|
||||
const r = parsePlanMd(broken)
|
||||
expect(r.ok).toBe(false)
|
||||
if (!r.ok) {
|
||||
expect(r.errors[0].hint).toMatch(/markdown/i)
|
||||
expect(r.errors[0].line).toBeGreaterThan(1)
|
||||
}
|
||||
})
|
||||
|
||||
it('omits hint for non-markdown yaml errors', () => {
|
||||
const broken = `---
|
||||
pbi:
|
||||
title: Test
|
||||
priority: [unclosed
|
||||
stories:
|
||||
- foo
|
||||
---
|
||||
`
|
||||
const r = parsePlanMd(broken)
|
||||
expect(r.ok).toBe(false)
|
||||
if (!r.ok) expect(r.errors[0].hint).toBeUndefined()
|
||||
})
|
||||
|
||||
it('reports schema-validation error when pbi-section missing', () => {
|
||||
const noPbi = `---
|
||||
stories:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue