feat: publish HoloLake model-native living system source
This commit is contained in:
parent
6ad10edde1
commit
c395dd3a99
2467 changed files with 615073 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
import assert from 'node:assert/strict'
|
||||
import test from 'node:test'
|
||||
|
||||
import { normalizeDocPath, sectionForFile } from './build-agent-docs.mjs'
|
||||
|
||||
test('normalizes Windows doc paths before section grouping', () => {
|
||||
const docPath = normalizeDocPath('concepts\\ai.md')
|
||||
|
||||
assert.equal(docPath, 'concepts/ai.md')
|
||||
assert.equal(sectionForFile(docPath), 'concepts')
|
||||
})
|
||||
Loading…
Reference in a new issue