Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lost so far #31

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 22 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"react-dom": "^16.13.1",
"react-dropdown": "^1.7.0",
"react-scripts": "3.4.1",
"striptags": "^3.1.1"
"striptags": "^3.1.1",
"uuid": "^8.3.2"
},
"scripts": {
"start": "react-scripts start",
Expand Down
1 change: 1 addition & 0 deletions src/components/Display.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const Display = (props) => {
const [selectedSeason, setSelectedSeason] = useState("none");

const { displayFunc } = props;

const handleClick = () => {
fetchShow().then(data => {
setShow(data);
Expand Down
11 changes: 11 additions & 0 deletions src/components/tests/Display.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
import React from "react";
import { render } from "@testing-library/react";
import Display from "../Display"

test("Display renders correctly", () => {
render(<Display/>);
})

test("Responds when isFetchingData is true"), () => {

}

test("Responds when isFetchingData is false"), () => {

}



Expand Down