mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
import { Validator } from "../../src/lib/configuration/Validator";
|
|
import Assert = require("assert");
|
|
|
|
describe.only("test validator", function() {
|
|
it("should validate a correct user configuration", function() {
|
|
Assert(Validator.validate({
|
|
ldap: {}
|
|
}));
|
|
});
|
|
}); |