Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.
This commit is contained in:
17
node_modules/load-yaml-file/test.js
generated
vendored
Normal file
17
node_modules/load-yaml-file/test.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
/* eslint-env mocha */
|
||||
|
||||
const assert = require('assert')
|
||||
const loadYamlFile = require('./')
|
||||
|
||||
describe('load-yaml-file', () => {
|
||||
it('loadYamlFile()', () => {
|
||||
return loadYamlFile('foo.yml').then(data => {
|
||||
assert.deepStrictEqual(data, { foo: true })
|
||||
})
|
||||
})
|
||||
|
||||
it('loadYamlFile.sync()', () => {
|
||||
const data = loadYamlFile.sync('foo.yml')
|
||||
assert.deepStrictEqual(data, { foo: true })
|
||||
})
|
||||
})
|
Reference in New Issue
Block a user