2019-01-30 21:44:03 +00:00
|
|
|
import AutheliaSuite from "../../helpers/context/AutheliaSuite";
|
|
|
|
import MongoConnectionRecovery from "./scenarii/MongoConnectionRecovery";
|
|
|
|
import EnforceInternalRedirectionsOnly from "./scenarii/EnforceInternalRedirectionsOnly";
|
|
|
|
|
2019-01-30 22:36:58 +00:00
|
|
|
AutheliaSuite('Complete configuration', __dirname + 'config.yml', function() {
|
2019-01-30 21:44:03 +00:00
|
|
|
this.timeout(10000);
|
|
|
|
|
|
|
|
describe('Mongo broken connection recovery', MongoConnectionRecovery);
|
|
|
|
describe('Enforce internal redirections only', EnforceInternalRedirectionsOnly);
|
|
|
|
});
|