mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
12 lines
397 B
TypeScript
12 lines
397 B
TypeScript
import AutheliaSuite from "../../helpers/context/AutheliaSuite";
|
|
import Inactivity from './scenarii/Inactivity';
|
|
import { exec } from '../../helpers/utils/exec';
|
|
|
|
AutheliaSuite('Short timeouts', __dirname, function() {
|
|
this.timeout(10000);
|
|
beforeEach(async function() {
|
|
await exec('cp users_database.example.yml users_database.yml');
|
|
});
|
|
|
|
describe('Inactivity period', Inactivity);
|
|
}); |