23 lines
636 B
TypeScript
23 lines
636 B
TypeScript
|
|
import ChildProcess from 'child_process';
|
|
|
|
export default function WithAutheliaRunning(configPath: string, waitTimeout: number = 3000) {
|
|
before(function() {
|
|
this.timeout(5000);
|
|
const authelia = ChildProcess.spawn(
|
|
'./scripts/authelia-scripts',
|
|
['serve', '--no-watch', '--config', configPath],
|
|
{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);
|
|
});
|
|
} |