Skip to content

Commit

Permalink
fix server tests
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Kusumgar committed Nov 5, 2024
1 parent 2c0bfa6 commit 8b8eb9c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions app/server/tests/controllers/appsController.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ describe("appsController", () => {
wodinConfig: {
baseUrl: "http://localhost:3000",
courseTitle: "Test Course Title",
hotReload: false,
...wodinConfig
},
wodinVersion: "1.2.3"
Expand Down Expand Up @@ -84,7 +83,7 @@ describe("appsController", () => {
mathjaxSrc,
defaultLanguage: "en",
enableI18n: false,
hotReload: false
hotReload: undefined
});
expect(mockStatus).not.toBeCalled();
});
Expand All @@ -107,7 +106,7 @@ describe("appsController", () => {
mathjaxSrc,
defaultLanguage: "en",
enableI18n: false,
hotReload: false
hotReload: undefined
});
});

Expand All @@ -134,7 +133,7 @@ describe("appsController", () => {
mathjaxSrc,
defaultLanguage: "en",
enableI18n: false,
hotReload: false
hotReload: undefined
});
});

Expand All @@ -159,7 +158,7 @@ describe("appsController", () => {
mathjaxSrc,
defaultLanguage: "en",
enableI18n: false,
hotReload: false
hotReload: undefined
});
});

Expand Down

0 comments on commit 8b8eb9c

Please sign in to comment.