Skip to content

Commit

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

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

Expand All @@ -154,7 +158,8 @@ describe("appsController", () => {
shareNotFound: "tiny-mouse",
mathjaxSrc,
defaultLanguage: "en",
enableI18n: false
enableI18n: false,
hotReload: false
});
});

Expand Down

0 comments on commit 2c0bfa6

Please sign in to comment.