aboutsummaryrefslogtreecommitdiff
path: root/react-frontend/src/App.test.js
diff options
context:
space:
mode:
authorMichael Foiani <sotech117@michaels-mbp-3.lan>2021-04-16 18:58:58 -0400
committerMichael Foiani <sotech117@michaels-mbp-3.lan>2021-04-16 18:58:58 -0400
commitd339801aba3fcedc0b3027f73dac91deaae14acc (patch)
tree832c5a1d560e79aac2920a29217b76133fd0e078 /react-frontend/src/App.test.js
parentee7dba2f399afa78275755c46b9b9c38906cc2b1 (diff)
Removed old testing react app for frontend.
Diffstat (limited to 'react-frontend/src/App.test.js')
-rw-r--r--react-frontend/src/App.test.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/react-frontend/src/App.test.js b/react-frontend/src/App.test.js
new file mode 100644
index 0000000..1f03afe
--- /dev/null
+++ b/react-frontend/src/App.test.js
@@ -0,0 +1,8 @@
+import { render, screen } from '@testing-library/react';
+import App from './App';
+
+test('renders learn react link', () => {
+ render(<App />);
+ const linkElement = screen.getByText(/learn react/i);
+ expect(linkElement).toBeInTheDocument();
+});