1
1
mirror of https://github.com/primer/css.git synced 2024-09-11 16:36:07 +03:00
css/__tests__/docs.test.js
2021-03-30 10:01:19 -07:00

19 lines
308 B
JavaScript

const fs = require('fs')
const yaml = require('js-yaml')
let nav
beforeAll(() => {
nav = yaml.load(fs.readFileSync('./docs/src/@primer/gatsby-theme-doctocat/nav.yml', 'utf8'))
})
describe('frontmatter', () => {
})
describe('navigation', () => {
it('has a file for each nav item', () => {
})
})