Skip to content

Commit

Permalink
Remove whitespaces in manifest body
Browse files Browse the repository at this point in the history
  • Loading branch information
katharinawuensche committed Apr 15, 2024
1 parent e703188 commit bb87f1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/tests/app/app.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ test.describe("app", () => {
const body = await response.body();

// TODO: use toMatchSnapshot
expect(body.toString()).toEqual(
expect(body.toString().replaceAll(/(\n|\t| )/g, "")).toEqual(
JSON.stringify({
name: "SiCProD",
short_name: "SiCProD",
Expand Down

0 comments on commit bb87f1e

Please sign in to comment.