Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
simlarsen committed May 16, 2023
1 parent 73bf0a2 commit 008655b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CommonServer/API/StatusPageAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -686,8 +686,8 @@ export default class StatusPageAPI extends BaseAPI<
title: true,
description: true,
_id: true,
showAnnouncementAt: true,
endAnnouncementAt: true
showAnnouncementAt: true,
endAnnouncementAt: true,
},
skip: 0,
limit: LIMIT_PER_PROJECT,
Expand Down
6 changes: 2 additions & 4 deletions Playwright/Tests/Home/SignUp.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ test.beforeEach(async ({ page }: { page: Page }) => {
await page.goto(BASE_URL);
});
test('sign up button', async ({ page }: { page: Page }) => {

await page.getByTestId("Sign-up").click();
await expect(page).toHaveURL(BASE_URL+"/accounts/register");

await page.getByTestId('Sign-up').click();
await expect(page).toHaveURL(BASE_URL + '/accounts/register');
});

0 comments on commit 008655b

Please sign in to comment.