Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
fix: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
nada-deriv committed Oct 9, 2023
1 parent d24d1ee commit 67d1a5f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/common/loading/__test__/loading.test.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// Test for passing the github actions
// TODO should update this test later
import { describe, expect, test } from "vitest";
import { render, screen } from "@testing-library/react";
import Loading from "..";
import { describe, expect, test } from 'vitest';
import { render, screen } from '@testing-library/react';
import Loading from '..';

describe("Loading component", () =>
test("should show loading text", () => {
render(<Loading />);
expect(screen.getByText("loading")).toBeInTheDocument();
}));
describe('Loading component', () =>
test('should show loading text', () => {
render(<Loading />);
expect(screen.getByText('loading')).toBeInTheDocument();
}));

0 comments on commit 67d1a5f

Please sign in to comment.