aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/App.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/App.test.tsx')
-rw-r--r--src/tests/App.test.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/App.test.tsx b/src/tests/App.test.tsx
index e050d4f..4765f87 100644
--- a/src/tests/App.test.tsx
+++ b/src/tests/App.test.tsx
@@ -1,9 +1,9 @@
-import React from 'react';
-import { render } from '@testing-library/react';
+import React from "react";
+import { render } from "@testing-library/react";
import App from "../App";
-test('renders app to body', () => {
+test("renders app to body", () => {
const { container } = render(<App />);
expect(container).toBeInTheDocument();
});