23 lines
626 B
TypeScript
23 lines
626 B
TypeScript
|
|
||
|
import ChildProcess from 'child_process';
|
||
|
|
||
|
export default function WithAutheliaRunning(waitTimeout: number = 3000) {
|
||
|
before(function() {
|
||
|
this.timeout(5000);
|
||
|
const authelia = ChildProcess.spawn(
|
||
|
'./scripts/authelia-scripts',
|
||
|
['serve', '--no-watch', '--config', 'config.minimal.yml'],
|
||
|
{detached: true});
|
||
|
this.authelia = authelia;
|
||
|
|
||
|
const waitPromise = new Promise((resolve, reject) => setTimeout(() => resolve(), waitTimeout));
|
||
|
return waitPromise;
|
||
|
});
|
||
|
|
||
|
after(function() {
|
||
|
this.timeout(1000);
|
||
|
|
||
|
// Kill the group of processes.
|
||
|
process.kill(-this.authelia.pid);
|
||
|
});
|
||
|
}
|