Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
axel7083 committed Jan 17, 2024
1 parent 2014298 commit fc3836b
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
@@ -1,6 +1,6 @@
import '@testing-library/jest-dom/vitest';
import { test, expect } from 'vitest';
import { fireEvent, render, screen, within } from '@testing-library/svelte';
import { render, screen } from '@testing-library/svelte';
import NavPage from '/@/lib/NavPage.svelte';

test('NavPage should have linear progress', async () => {
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 fc3836b

Please sign in to comment.