Reformat code
This commit is contained in:
parent
6302458c8f
commit
3188637d07
|
@ -1,12 +1,12 @@
|
||||||
import { LogIn } from "./components/LogIn/LogIn";
|
import { LogIn } from "./components/LogIn/LogIn";
|
||||||
import { Navigate, Route, RouteProps, Routes, useNavigate, useParams } from "react-router";
|
import { Navigate, Route, RouteProps, Routes, useNavigate, useParams } from "react-router";
|
||||||
import { SignUp } from "./components/SignUp/SignUp";
|
import { SignUp } from "./components/SignUp/SignUp";
|
||||||
import { CreateAirline } from "./components/SignUp/CreateAirline";
|
import { CreateAirline } from "./components/CreateAirline/CreateAirline";
|
||||||
import { Home } from "./components/Home/Home";
|
import { Home } from "./components/Home/Home";
|
||||||
import { CreateFlight } from "./components/CreateFlight/CreateFlight";
|
import { CreateFlight } from "./components/CreateFlight/CreateFlight";
|
||||||
import { Button } from "antd";
|
import { Button } from "antd";
|
||||||
import useAuth, { AuthProvider } from "./useAuth";
|
import useAuth, { AuthProvider } from "./useAuth";
|
||||||
import { EditFlight } from "./components/CreateFlight/EditFlight";
|
import { EditFlight } from "./components/CreateFlight/EditFlight/EditFlight";
|
||||||
import LandingPage from "./components/Landing/Landing";
|
import LandingPage from "./components/Landing/Landing";
|
||||||
|
|
||||||
function Router() {
|
function Router() {
|
||||||
|
@ -18,9 +18,13 @@ function Router() {
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path="/login" element={!user ? <LogIn /> : <Navigate to="/flights" />} />
|
<Route path="/login" element={!user ? <LogIn /> : <Navigate to="/flights" />} />
|
||||||
<Route path="/signup" element={<SignUp />} />
|
<Route path="/signup" element={<SignUp />} />
|
||||||
<Route path="/create-airline" element={!isAdmin ? (!user ? <Navigate to="/login" state={"/create-airline"} /> : <Navigate to="/flights" />) : <CreateAirline />} />
|
<Route path="/create-airline" element={
|
||||||
|
!isAdmin ? (!user ? <Navigate to="/login" state={"/create-airline"} /> : <Navigate to="/flights" />) : <CreateAirline />
|
||||||
|
} />
|
||||||
<Route path="/flights" element={<Home />} />
|
<Route path="/flights" element={<Home />} />
|
||||||
<Route path="/create-flight" element={!isAirline ? (!user ? <Navigate to="/login" state={"/create-flight"} /> : <Navigate to="/flights" />) : <CreateFlight />} />
|
<Route path="/create-flight" element={
|
||||||
|
!isAirline ? (!user ? <Navigate to="/login" state={"/create-flight"} /> : <Navigate to="/flights" />) : <CreateFlight />
|
||||||
|
} />
|
||||||
<Route path="/edit-flight/:id" element={<EditFlightComponent />} />
|
<Route path="/edit-flight/:id" element={<EditFlightComponent />} />
|
||||||
<Route path="/" element={<LandingPage />} />
|
<Route path="/" element={<LandingPage />} />
|
||||||
<Route path="*" element={<Navigate to="/" />} />
|
<Route path="*" element={<Navigate to="/" />} />
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
import "../../matchMedia.mock";
|
|
||||||
import "@testing-library/jest-dom";
|
|
||||||
import userEvent from "@testing-library/user-event";
|
|
||||||
import { render, screen } from "@testing-library/react";
|
|
||||||
import { Button } from "antd";
|
|
||||||
|
|
||||||
describe("Button Component Test", () => {
|
|
||||||
test("Display button label and clicked", async () => {
|
|
||||||
const onClick = jest.fn();
|
|
||||||
|
|
||||||
render(<Button onClick={() => onClick()}>Button</Button>);
|
|
||||||
|
|
||||||
expect(screen.getByText("Button")).toBeVisible();
|
|
||||||
await userEvent.click(screen.getByText("Button"));
|
|
||||||
expect(onClick).toBeCalled();
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,8 +1,8 @@
|
||||||
import React, { useState } from "react";
|
import React, { useState } from "react";
|
||||||
import { FlightEditNotNull, Flight } from "../../Types";
|
import { FlightEditNotNull, Flight } from "../../../Types";
|
||||||
import { useNavigate, useParams } from "react-router";
|
import { useNavigate, useParams } from "react-router";
|
||||||
import "./FlightForm.css";
|
import "../FlightForm.css";
|
||||||
import { editFlight } from "../../Api";
|
import { editFlight } from "../../../Api";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
flight?: Flight;
|
flight?: Flight;
|
|
@ -5,10 +5,5 @@ import "../../../matchMedia.mock";
|
||||||
import { Card } from "./Card";
|
import { Card } from "./Card";
|
||||||
|
|
||||||
describe("Card Component Test", () => {
|
describe("Card Component Test", () => {
|
||||||
test("Display initial, name and icon", async () => {
|
test("Display initial, name and icon", async () => { });
|
||||||
// render(<Card name="Belgrano" />);
|
|
||||||
|
|
||||||
// expect(screen.getByText("Belgrano📍")).toBeVisible();
|
|
||||||
// expect(screen.getByText("B")).toBeVisible();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -7,22 +7,7 @@ jest.mock("react-router-dom", () => ({
|
||||||
|
|
||||||
import "../../matchMedia.mock";
|
import "../../matchMedia.mock";
|
||||||
import "@testing-library/jest-dom";
|
import "@testing-library/jest-dom";
|
||||||
import { render, screen } from "@testing-library/react";
|
|
||||||
import { Home } from "./Home";
|
|
||||||
|
|
||||||
describe("Home View Test", () => {
|
describe("Home View Test", () => {
|
||||||
test("Display initial, name and icon", async () => {
|
test("Display initial, name and icon", async () => { });
|
||||||
// render(
|
|
||||||
// <Home
|
|
||||||
// zones={[
|
|
||||||
// { id: 1, name: "Belgrano" },
|
|
||||||
// { id: 2, name: "San Isidro" },
|
|
||||||
// ]}
|
|
||||||
// />
|
|
||||||
// );
|
|
||||||
|
|
||||||
// expect(screen.getByText("Zones")).toBeVisible();
|
|
||||||
// expect(screen.getByText("Belgrano📍")).toBeVisible();
|
|
||||||
// expect(screen.getByText("San Isidro📍")).toBeVisible();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -35,4 +35,3 @@
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash -e
|
||||||
|
|
||||||
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
|
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
|
||||||
npm run test:integration
|
npm run test:integration
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash -e
|
||||||
|
|
||||||
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
|
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
|
||||||
npm run test:integration
|
npm run test:integration
|
||||||
|
|
Loading…
Reference in New Issue