Skip to content

Commit

Permalink
linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
duplixx committed Nov 11, 2023
1 parent 787de64 commit be1fb7b
Showing 1 changed file with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import React from 'react';
import { MemoryRouter, Route } from 'react-router-dom';
import { render, screen, waitFor } from '@testing-library/react';
import SecuredRouteForUser from './SecuredRouteForUser';
import React from "react";
import { MemoryRouter, Route } from "react-router-dom";
import { render, screen, waitFor } from "@testing-library/react";
import SecuredRouteForUser from "./SecuredRouteForUser";

describe('SecuredRouteForUser', () => {
test('renders the route when the user is logged in', () => {
describe("SecuredRouteForUser", () => {
test("renders the route when the user is logged in", () => {
// Set the 'IsLoggedIn' value to 'TRUE' in localStorage to simulate a logged-in user
localStorage.setItem('IsLoggedIn', 'TRUE');
localStorage.setItem("IsLoggedIn", "TRUE");

render(
<MemoryRouter initialEntries={['/user/organizations']}>
<MemoryRouter initialEntries={["/user/organizations"]}>
<Route
path="/user/organizations"
render={() => (
Expand All @@ -23,18 +23,18 @@ describe('SecuredRouteForUser', () => {
/>
)}
/>
</MemoryRouter>
</MemoryRouter>,
);

expect(screen.getByTestId('organizations-content')).toBeInTheDocument();
expect(screen.getByTestId("organizations-content")).toBeInTheDocument();
});

test('redirects to /user when the user is not logged in', async () => {
test("redirects to /user when the user is not logged in", async () => {
// Set the user as not logged in in local storage
localStorage.setItem('IsLoggedIn', 'FALSE');
localStorage.setItem("IsLoggedIn", "FALSE");

render(
<MemoryRouter initialEntries={['/secured']}>
<MemoryRouter initialEntries={["/secured"]}>
<Route
path="/secured"
exact
Expand All @@ -44,11 +44,11 @@ describe('SecuredRouteForUser', () => {
</SecuredRouteForUser>
)}
/>
</MemoryRouter>
</MemoryRouter>,
);

await waitFor(() => {
expect(window.location.pathname).toBe('/');
});
await waitFor(() => {
expect(window.location.pathname).toBe("/");
});
});
});

0 comments on commit be1fb7b

Please sign in to comment.