mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
|
import { join } from 'path';
|
||
|
|
||
|
import { runServer } from '../../../../src';
|
||
|
import { parseConfigFile } from '../../../../src/lib/utils';
|
||
|
|
||
|
describe('bootstrap modern', () => {
|
||
|
describe('runServer', () => {
|
||
|
test('run server should be able to listen', (done) => {
|
||
|
const configPath = join(__dirname, './config.yaml');
|
||
|
runServer(configPath).then((app) => {
|
||
|
app.listen(4000, () => {
|
||
|
app.close();
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
|
||
|
test('run server should be able to listen with object', (done) => {
|
||
|
const configPath = join(__dirname, './config.yaml');
|
||
|
const c = parseConfigFile(configPath);
|
||
|
// workaround
|
||
|
// on v5 the `self_path` still exists and will be removed in v6
|
||
|
c.self_path = 'foo';
|
||
|
runServer(c).then((app) => {
|
||
|
app.listen(4000, () => {
|
||
|
app.close();
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
|
||
|
test('run server should be able to listen async', async () => {
|
||
|
const configPath = join(__dirname, './config.yaml');
|
||
|
const app = await runServer(configPath);
|
||
|
return new Promise((resolve) => {
|
||
|
app.listen(4000, () => {
|
||
|
app.close();
|
||
|
resolve(true);
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
|
||
|
test('run server should fails with wrong path', async () => {
|
||
|
const configPath = join(__dirname, './this_does_not_exist.yaml');
|
||
|
await expect(runServer(configPath)).rejects.toThrow(/Error: CONFIG: it does not look like a valid config file/);
|
||
|
});
|
||
|
});
|
||
|
});
|