diff options
author | 2021-01-03 18:18:52 +0000 | |
---|---|---|
committer | 2021-01-03 18:18:52 +0000 | |
commit | 2e674d14ca1cd8037f8bbd33cdf415a2e4970ae1 (patch) | |
tree | 93d2f7186a31cf6502810170d94fc77634c89f4d /src/tests/App.test.tsx | |
parent | Typo fix in GHA (diff) | |
parent | Adds Pre-commit Hook (diff) |
Merge pull request #72 from python-discord/dev-workflow
Update Developer Workflow
Diffstat (limited to 'src/tests/App.test.tsx')
-rw-r--r-- | src/tests/App.test.tsx | 6 |
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(); }); |