Fix link json again (#12)

Use id token instead of access token
This commit is contained in:
John Wu
2021-02-03 08:35:06 -08:00
committed by GitHub
parent 42870e10c2
commit 98bcab5b81
7 changed files with 8 additions and 8 deletions

View File

@@ -4,7 +4,7 @@ import {render, cleanup, screen, fireEvent, waitFor} from "@testing-library/reac
import { UserProvider, useUserContext } from "../Contexts/UserContext";
import auth from "../../services/auth";
const TEST_TOKEN = { accessToken: { jwtToken: "TEST" }};
const TEST_TOKEN = { idToken: { jwtToken: "TEST" }};
describe("UseContext", () => {