Merge pull request #30813 from backstage/freben/advanced-options

Arrange most `create[Specialized]App` options into an `advanced` field
This commit is contained in:
Fredrik Adelöw
2025-08-08 15:09:05 +02:00
committed by GitHub
12 changed files with 311 additions and 148 deletions
@@ -46,7 +46,9 @@ function createTestAppRoot({
}) {
return createApp({
features: [...features],
configLoader: async () => ({ config: mockApis.config({ data: config }) }),
advanced: {
configLoader: async () => ({ config: mockApis.config({ data: config }) }),
},
}).createRoot();
}
@@ -128,7 +128,9 @@ function createTestAppRoot({
}) {
return createApp({
features: [...features],
configLoader: async () => ({ config: mockApis.config({ data: config }) }),
advanced: {
configLoader: async () => ({ config: mockApis.config({ data: config }) }),
},
}).createRoot();
}