mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
16 lines
273 B
TypeScript
16 lines
273 B
TypeScript
|
|
import sinon = require("sinon");
|
|
|
|
|
|
export interface AuthenticationRegulatorMock {
|
|
mark: sinon.SinonStub;
|
|
regulate: sinon.SinonStub;
|
|
}
|
|
|
|
export function AuthenticationRegulatorMock() {
|
|
return {
|
|
mark: sinon.stub(),
|
|
regulate: sinon.stub()
|
|
};
|
|
}
|