Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
axel7083 committed Jan 17, 2024
1 parent 3b5db7b commit a2b2b84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/frontend/src/lib/NavPage.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import NavPage from '/@/lib/NavPage.svelte';

test('NavPage should have linear progress', async () => {
// render the component
render(NavPage, {loading: true, title: 'dummy'});
render(NavPage, { loading: true, title: 'dummy' });

const content = await screen.findByLabelText('content');
expect(content).toBeDefined();
Expand All @@ -14,7 +14,7 @@ test('NavPage should have linear progress', async () => {

test('NavPage should not have linear progress', async () => {
// render the component
render(NavPage, {title: 'dummy'});
render(NavPage, { title: 'dummy' });

const content = await screen.findByLabelText('content');
expect(content).toBeDefined();
Expand Down

0 comments on commit a2b2b84

Please sign in to comment.