docusaurus/test/load/routes.test.js
2018-09-07 20:41:04 +08:00

24 lines
664 B
JavaScript

import genRoutesConfig from '@lib/load/routes';
import loadSetup from '../loadSetup';
describe('genRoutesConfig', () => {
test('simple website', async () => {
const props = await loadSetup('simple');
await genRoutesConfig(props);
});
test('versioned website', async () => {
const props = await loadSetup('versioned');
await genRoutesConfig(props);
});
test('versioned & translated website', async () => {
const props = await loadSetup('transversioned');
await genRoutesConfig(props);
});
test('translated website', async () => {
const props = await loadSetup('translated');
await genRoutesConfig(props);
});
});