-
-
Notifications
You must be signed in to change notification settings - Fork 496
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
Adding Testing with Vite #1908
base: main
Are you sure you want to change the base?
Adding Testing with Vite #1908
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,3 +71,7 @@ button.btn.btn-primary { | |
margin-left: 2em; | ||
margin-right: 2em; | ||
} | ||
|
||
#contact{ | ||
padding: 5em; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
import './App.css' | ||
import 'bootstrap/dist/css/bootstrap.min.css'; | ||
import MyNavBar from './components/Navbar' | ||
import MyNavBar from './routes/Navbar' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I personally would leave * At least in the traditional/beginner setup |
||
import ListStudents from './components/ListStudents' | ||
|
||
import React, { useState } from 'react' | ||
import { Outlet } from 'react-router-dom'; | ||
|
||
function App() { | ||
|
||
const [isClicked, setIsClicked] = useState(false); | ||
|
||
const handleMe = () =>{ | ||
setIsClicked(true); | ||
} | ||
|
||
|
||
return ( | ||
<div className="App"> | ||
<MyNavBar /> | ||
<ListStudents /> | ||
|
||
<MyNavBar handleMe={handleMe} /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. React convention is that prop names that are callbacks start with the word "on" and then a description of what event it is. So since this callback is called whenever the account menu item is clicked, I'd rename this prop to And then |
||
{isClicked ? <Outlet /> : <ListStudents /> } | ||
</div> | ||
) | ||
} | ||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,49 @@ | ||||||||||||||||||
|
||||||||||||||||||
|
||||||||||||||||||
export default function Contact() { | ||||||||||||||||||
const contact = { | ||||||||||||||||||
first: "Cristina", | ||||||||||||||||||
last: "Rodriguez", | ||||||||||||||||||
avatar: "https://placekitten.com/g/200/200", | ||||||||||||||||||
twitter: "yosola", | ||||||||||||||||||
notes: "Some notes", | ||||||||||||||||||
favorite: true, | ||||||||||||||||||
}; | ||||||||||||||||||
|
||||||||||||||||||
return ( | ||||||||||||||||||
<div id="contact"> | ||||||||||||||||||
<div> | ||||||||||||||||||
<img | ||||||||||||||||||
key={contact.avatar} | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A |
||||||||||||||||||
src={contact.avatar || null} | ||||||||||||||||||
/> | ||||||||||||||||||
</div> | ||||||||||||||||||
|
||||||||||||||||||
<div> | ||||||||||||||||||
<h1> | ||||||||||||||||||
{contact.first || contact.last ? ( | ||||||||||||||||||
<> | ||||||||||||||||||
{contact.first} {contact.last} | ||||||||||||||||||
</> | ||||||||||||||||||
) : ( | ||||||||||||||||||
<i>No Name</i> | ||||||||||||||||||
)}{" "} | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
</h1> | ||||||||||||||||||
|
||||||||||||||||||
{contact.twitter && ( | ||||||||||||||||||
<p> | ||||||||||||||||||
<a | ||||||||||||||||||
target="_blank" | ||||||||||||||||||
href={`https://twitter.com/${contact.twitter}`} | ||||||||||||||||||
> | ||||||||||||||||||
{contact.twitter} | ||||||||||||||||||
</a> | ||||||||||||||||||
</p> | ||||||||||||||||||
)} | ||||||||||||||||||
|
||||||||||||||||||
{contact.notes && <p>{contact.notes}</p>} | ||||||||||||||||||
|
||||||||||||||||||
</div> | ||||||||||||||||||
</div> | ||||||||||||||||||
) | ||||||||||||||||||
} | ||||||||||||||||||
Comment on lines
+46
to
+49
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { useRouteError } from "react-router-dom"; | ||
|
||
export default function ErrorPage() { | ||
const error = useRouteError(); | ||
console.error(error); | ||
|
||
return ( | ||
<div id="error-page"> | ||
<h1>Oops Techtonica template apologizes!!</h1> | ||
<p>Sorry, an unexpected error has occurred.</p> | ||
<p> | ||
<i>{error.statusText || error.message}</i> | ||
</p> | ||
</div> | ||
); | ||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,40 @@ | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
import React from 'react'; | ||||||||||||||||||||||||||||||||||||||||||
import {describe, expect, test} from 'vitest'; | ||||||||||||||||||||||||||||||||||||||||||
import { render, screen } from '@testing-library/react'; | ||||||||||||||||||||||||||||||||||||||||||
import Student from './components/Student'; | ||||||||||||||||||||||||||||||||||||||||||
import MyForm from './components/Form'; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
test("Show full name of a student", () =>{ | ||||||||||||||||||||||||||||||||||||||||||
const testName = {firstname: "Michelle", lastname: "Glausser"}; | ||||||||||||||||||||||||||||||||||||||||||
const studentElement = render(<Student student={testName} />) | ||||||||||||||||||||||||||||||||||||||||||
const studentFullName = studentElement.getByText("Michelle Glausser"); | ||||||||||||||||||||||||||||||||||||||||||
expect(studentFullName).toBeDefined(); | ||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
test("Show the form is rendering", () =>{ | ||||||||||||||||||||||||||||||||||||||||||
const formElement = render(<MyForm />); | ||||||||||||||||||||||||||||||||||||||||||
const signUpForm = formElement.getByTestId('eventForm'); | ||||||||||||||||||||||||||||||||||||||||||
expect(signUpForm).toBeDefined(); | ||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
/* | ||||||||||||||||||||||||||||||||||||||||||
describe('event signup form', () => { | ||||||||||||||||||||||||||||||||||||||||||
it('renders a form', () => { | ||||||||||||||||||||||||||||||||||||||||||
render(<EventSignUpForm />); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
const signUpForm = screen.getByTestId('event-form'); | ||||||||||||||||||||||||||||||||||||||||||
expect(signUpForm).toBeInTheDocument(); | ||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
test('test that MyNavBar renders', () => { | ||||||||||||||||||||||||||||||||||||||||||
// const navbarElement = render(<MyNavBar/>); | ||||||||||||||||||||||||||||||||||||||||||
// const navbarId = navbarElement.getByTestId('navbar'); | ||||||||||||||||||||||||||||||||||||||||||
// expect(navbarId).toBeDefined(); | ||||||||||||||||||||||||||||||||||||||||||
// }); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+21
to
+40
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Looks like unused code? |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,33 @@ | ||
import React from 'react' | ||
import ReactDOM from 'react-dom/client' | ||
import App from './App' | ||
import { createBrowserRouter, createRoutesFromElements, Route, RouterProvider,} from "react-router-dom"; | ||
import './index.css' | ||
import ErrorPage from "./components/error-page"; | ||
import Contact from "./components/contact"; | ||
|
||
|
||
// /* | ||
// const router = createBrowserRouter( | ||
// createRoutesFromElements( | ||
// <Route path="/" element={<App />}> | ||
// <Route path="login" element={<Contact />} /> | ||
// </Route> | ||
// ) | ||
// ); | ||
|
||
// */ | ||
Comment on lines
+10
to
+19
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove unused code to prevent confusion OR write an explanation on what this commented out code does |
||
|
||
const router = createBrowserRouter( | ||
createRoutesFromElements( | ||
<Route path="/" element={<App />}> | ||
<Route path="login" element={<Contact />} /> | ||
</Route> | ||
) | ||
); | ||
|
||
ReactDOM.createRoot(document.getElementById('root')).render( | ||
<React.StrictMode> | ||
<App /> | ||
<RouterProvider router={router} /> | ||
</React.StrictMode>, | ||
) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/// <reference types="vitest" /> | ||
import { defineConfig } from 'vite' | ||
import react from '@vitejs/plugin-react' | ||
|
||
// https://vitejs.dev/config/ | ||
export default defineConfig({ | ||
plugins: [react()], | ||
test: { | ||
framework: 'vitest', | ||
globals: true, | ||
environment: 'jsdom', | ||
} | ||
}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can i provide here