Преглед изворни кода

Merge branch 'feat/plugin-mgmt-3-settings' into feat/plugin-mgmt-4-web

Yichen Jiang пре 2 недеља
родитељ
комит
ec0504dc58
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      packages/host/plugin-inventory/tests/inventory.spec.ts

+ 3 - 1
packages/host/plugin-inventory/tests/inventory.spec.ts

@@ -165,7 +165,9 @@ describe('PluginInventoryGateway', () => {
     const stack: ComposedStack = {
       patches: [], layers: [], owners: new Map(), conflicts: [], skippedBundles: [], userDisabledRowIds: new Set([groupId]),
     }
-    await ctx.plugin(ProfileRuntime, { profile, stack, loadProfile: () => profile, compose: () => stack, rootEntry: () => undefined })
+    await ctx.plugin(ProfileRuntime, {
+      profile, stack, installAnchor: '/app/package.json', loadProfile: () => profile, compose: () => stack, rootEntry: () => undefined,
+    })
     await ctx.loader.update(groupId, { disabled: true })
     const listed = (await inventory.list()).entries.find(entry => entry.entryId === child?.id)
     expect(listed).toMatchObject({ enabled: false, disabledBy: 'user' })