Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
// @flow strict-local
|
|
|
|
import assert from 'assert';
|
|
import {loadConfig} from '../src/config';
|
|
import {inputFS as fs} from '@parcel/test-utils';
|
|
import path from 'path';
|
|
|
|
describe('loadConfig', () => {
|
|
it('load config with json', async () => {
|
|
assert.deepEqual(
|
|
(
|
|
await loadConfig(
|
|
fs,
|
|
path.join(__dirname, './input/config/config.json'),
|
|
['config.json'],
|
|
path.join(__dirname, './input/config/'),
|
|
)
|
|
)?.config,
|
|
{
|
|
hoge: 'fuga',
|
|
},
|
|
);
|
|
});
|
|
|
|
it('should throw error with empty string json', async () => {
|
|
// $FlowFixMe[prop-missing]
|
|
await assert.rejects(async () => {
|
|
await loadConfig(
|
|
fs,
|
|
path.join(__dirname, './input/config/empty.json'),
|
|
['empty.json'],
|
|
path.join(__dirname, './input/config/'),
|
|
);
|
|
});
|
|
});
|
|
|
|
it('should load with empty string config toml', async () => {
|
|
assert.deepEqual(
|
|
(
|
|
await loadConfig(
|
|
fs,
|
|
path.join(__dirname, './input/config/empty.toml'),
|
|
['empty.toml'],
|
|
path.join(__dirname, './input/config/'),
|
|
)
|
|
)?.config,
|
|
{},
|
|
);
|
|
});
|
|
});
|
|
|