Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions scripts/test_check_docs_index.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,38 @@ try {
'docs/research/domain/archive/README_FULL_HISTORY_2026-08-13.md' = "# archive`n`n[current](../README.md)`n"
} `
-ShouldPass $true
Assert-DocumentationFixtureResult `
-Name 'community-entry-pages-indexed' `
-Files @{
'docs/README.md' = @'
# docs

[project state](PROJECT_STATE.md)
[English quick start](QUICKSTART_EN.md)
[community launch kit](COMMUNITY_LAUNCH_KIT.md)
[research](research/README.md)
[domain](research/domain/README.md)
'@
'docs/QUICKSTART_EN.md' = "# quick start`n`nStatus: ``current```n"
'docs/COMMUNITY_LAUNCH_KIT.md' = "# launch kit`n`nStatus: ``current```n"
} `
-ShouldPass $true
Assert-DocumentationFixtureResult `
-Name 'community-current-entry-broken-link' `
-Files @{
'docs/README.md' = @'
# docs

[project state](PROJECT_STATE.md)
[English quick start](QUICKSTART_EN.md)
[community launch kit](COMMUNITY_LAUNCH_KIT.md)
[research](research/README.md)
[domain](research/domain/README.md)
'@
'docs/QUICKSTART_EN.md' = "# quick start`n`nStatus: ``current```n`n[missing](MISSING.md)`n"
'docs/COMMUNITY_LAUNCH_KIT.md' = "# launch kit`n`nStatus: ``current```n"
} `
-ShouldPass $false
Assert-DocumentationFixtureResult `
-Name 'current-snapshot-status-conflict' `
-Files @{
Expand Down