Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MalpenZibo committed Nov 12, 2024
1 parent 57a391d commit 1bf21ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/catalog-process/test/createEService.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ describe("create eservice", () => {
id: eservice.id,
descriptors: [],
isSignalHubEnabled,
isDelegable,
};
const expectedEserviceWithDescriptor: EService = {
...mockEService,
Expand Down
3 changes: 3 additions & 0 deletions packages/catalog-process/test/updateEservice.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ describe("update eService", () => {
vi.spyOn(fileManager, "delete");

const isSignalHubEnabled = randomArrayItem([false, true, undefined]);
const isDelegable = randomArrayItem([false, true, undefined]);

const descriptor: Descriptor = {
...getMockDescriptor(),
state: descriptorState.draft,
Expand All @@ -59,6 +61,7 @@ describe("update eService", () => {
technology: "REST",
mode: "DELIVER",
isSignalHubEnabled,
isDelegable,
},
{
authData: getMockAuthData(mockEService.producerId),
Expand Down

0 comments on commit 1bf21ef

Please sign in to comment.