mirror of
https://github.com/primer/css.git
synced 2024-11-27 17:52:45 +03:00
34 lines
815 B
JavaScript
34 lines
815 B
JavaScript
const {getNavigationLinks, getContentFrontmatter} = require('./utils/docs')
|
|
|
|
let navLinks, contentFM
|
|
|
|
beforeAll(async () => {
|
|
contentFM = await getContentFrontmatter()
|
|
navLinks = getNavigationLinks()
|
|
})
|
|
|
|
describe('frontmatter', () => {
|
|
it('page title matches link title', () => {
|
|
for (const link of navLinks) {
|
|
const content = contentFM[link['url']]
|
|
expect(content).not.toBeNull()
|
|
expect(content['title']).toBe(link['title'])
|
|
}
|
|
})
|
|
|
|
it('contains path attribute', () => {
|
|
for (const v of Object.values(contentFM)) {
|
|
expect(v['path']).not.toBeNull()
|
|
}
|
|
})
|
|
})
|
|
|
|
describe('navigation', () => {
|
|
it('has a file for each nav item', () => {
|
|
for (const link of navLinks) {
|
|
const content = contentFM[link['url']]
|
|
expect(content).not.toBeNull()
|
|
}
|
|
})
|
|
})
|