Skip to content

Commit

Permalink
fix(coral): Fix test fixtures
Browse files Browse the repository at this point in the history
Signed-off-by: Mathieu Anderson <[email protected]>
  • Loading branch information
Mathieu Anderson committed Dec 13, 2023
1 parent 724e8f2 commit e0b59d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const testCluster: ClusterDetails[] = [
serviceName: "test-service-name",
showDeleteCluster: true,
totalNoPages: "1",
currentPage: "1",
},
{
allPageNos: ["1"],
Expand All @@ -42,6 +43,7 @@ const testCluster: ClusterDetails[] = [
publicKey: "",
showDeleteCluster: true,
totalNoPages: "1",
currentPage: "1",
},
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const testCluster: ClusterDetails[] = [
serviceName: "test-service-name",
showDeleteCluster: true,
totalNoPages: "1",
currentPage: "1",
},
{
allPageNos: ["1"],
Expand All @@ -34,6 +35,7 @@ const testCluster: ClusterDetails[] = [
publicKey: "",
showDeleteCluster: true,
totalNoPages: "1",
currentPage: "1",
},
];

Expand Down
2 changes: 2 additions & 0 deletions coral/src/domain/cluster/cluster-api-transformer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const mockedApiResponse: KlawApiModel<"KwClustersModelResponse">[] = [
projectName: "nice-project",
serviceName: "kafka-service",
publicKey: "",
currentPage: "1",
},
{
clusterId: 7,
Expand All @@ -30,6 +31,7 @@ const mockedApiResponse: KlawApiModel<"KwClustersModelResponse">[] = [
allPageNos: ["1"],
clusterStatus: "OFFLINE",
publicKey: "",
currentPage: "1",
},
];

Expand Down

0 comments on commit e0b59d2

Please sign in to comment.