fix tests: replace initialConfig with config

This commit is contained in:
dswbx
2025-09-04 10:44:14 +02:00
parent e3888537f9
commit 758a89b5d7
31 changed files with 78 additions and 96 deletions

View File

@@ -91,7 +91,7 @@ export function testSuite(config: TestSuiteConfig) {
const app = createApp({
connection,
initialConfig: {
config: {
data: schema.toJSON(),
},
});
@@ -177,7 +177,7 @@ export function testSuite(config: TestSuiteConfig) {
const app = createApp({
connection,
initialConfig: {
config: {
data: schema.toJSON(),
},
});

View File

@@ -37,7 +37,7 @@ describe("integration", () => {
const app = createApp({
connection: create(),
initialConfig: {
config: {
data: schema.toJSON(),
},
});