Browse Source

Merge branch 'feat/plugin-mgmt-2-manager' into feat/plugin-mgmt-3-settings

Yichen Jiang 2 tuần trước cách đây
mục cha
commit
4c423bbb68
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  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' })