mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
d8ff186303
Client and server now have their own tsconfig so that the transpilation is only done on the part that is being modified. It also allows faster transpilation since tests are now excluded from tsconfig. They are compiled by ts-node during unit tests execution.
17 lines
500 B
TypeScript
17 lines
500 B
TypeScript
import BluebirdPromise = require("bluebird");
|
|
import Sinon = require("sinon");
|
|
import { ICollection } from "../../../src/lib/storage/ICollection";
|
|
import { ICollectionFactory } from "../../../src/lib/storage/ICollectionFactory";
|
|
|
|
export class CollectionFactoryStub implements ICollectionFactory {
|
|
buildStub: Sinon.SinonStub;
|
|
|
|
constructor() {
|
|
this.buildStub = Sinon.stub();
|
|
}
|
|
|
|
build(collectionName: string): ICollection {
|
|
return this.buildStub(collectionName);
|
|
}
|
|
}
|