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.
16 lines
469 B
TypeScript
16 lines
469 B
TypeScript
import Sinon = require("sinon");
|
|
import Assert = require("assert");
|
|
|
|
import { NedbCollectionFactory } from "../../../src/lib/storage/nedb/NedbCollectionFactory";
|
|
|
|
describe("NedbCollectionFactory", function() {
|
|
it("should create a nedb collection", function() {
|
|
const nedbOptions = {
|
|
inMemoryOnly: true
|
|
};
|
|
const factory = new NedbCollectionFactory(nedbOptions);
|
|
|
|
const collection = factory.build("mycollection");
|
|
Assert(collection);
|
|
});
|
|
}); |