Skip to content

Commit

Permalink
Fixing test case.
Browse files Browse the repository at this point in the history
  • Loading branch information
mike12345567 committed Dec 6, 2024
1 parent 1cb9d28 commit 551c2ec
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe("/api/system/environment", () => {
const env = await config.api.environment.getEnvironment()
expect(env.body).toEqual({
cloud: true,
disableAccountPortal: 0,
disableAccountPortal: false,
isDev: false,
multiTenancy: true,
baseUrl: "http://localhost:10000",
Expand All @@ -36,7 +36,7 @@ describe("/api/system/environment", () => {
const env = await config.api.environment.getEnvironment()
expect(env.body).toEqual({
cloud: false,
disableAccountPortal: 0,
disableAccountPortal: false,
isDev: false,
multiTenancy: true,
baseUrl: "http://localhost:10000",
Expand Down

0 comments on commit 551c2ec

Please sign in to comment.