mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
test: remove unused parameter from getDummyConnection calls
This commit is contained in:
@@ -5,7 +5,7 @@ import { TABLE_NAME } from "modules/db/migrations";
|
|||||||
|
|
||||||
describe("DbModuleManager", () => {
|
describe("DbModuleManager", () => {
|
||||||
it("should extract secrets", async () => {
|
it("should extract secrets", async () => {
|
||||||
const { dummyConnection } = getDummyConnection(false);
|
const { dummyConnection } = getDummyConnection();
|
||||||
const m = new DbModuleManager(dummyConnection, {
|
const m = new DbModuleManager(dummyConnection, {
|
||||||
initial: {
|
initial: {
|
||||||
auth: {
|
auth: {
|
||||||
@@ -22,7 +22,7 @@ describe("DbModuleManager", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it("should work with initial secrets", async () => {
|
it("should work with initial secrets", async () => {
|
||||||
const { dummyConnection } = getDummyConnection(false);
|
const { dummyConnection } = getDummyConnection();
|
||||||
const db = dummyConnection.kysely;
|
const db = dummyConnection.kysely;
|
||||||
const m = new DbModuleManager(dummyConnection, {
|
const m = new DbModuleManager(dummyConnection, {
|
||||||
initial: {
|
initial: {
|
||||||
|
|||||||
Reference in New Issue
Block a user