13 lines
403 B
TypeScript
13 lines
403 B
TypeScript
import AutheliaSuite from "../../helpers/context/AutheliaSuite";
|
|
import { exec } from '../../helpers/utils/exec';
|
|
import NetworkACLs from "./scenarii/NetworkACLs";
|
|
|
|
AutheliaSuite(__dirname, function() {
|
|
this.timeout(10000);
|
|
|
|
beforeEach(async function() {
|
|
await exec(`cp ${__dirname}/users_database.yml ${__dirname}/users_database.test.yml`);
|
|
});
|
|
|
|
describe("Network ACLs", NetworkACLs);
|
|
}); |