Skip to content

Commit

Permalink
Fix casing in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ClydeDz committed Jul 28, 2024
1 parent f970ae3 commit 3d9dd0c
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion website/src/api/Analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { ILinkClickedProps, MIXPANEL_DEV_PROJECT_ID } from "./IAnalytics";
export const initAnalyticsWithSuperProperties = () => {
const mixpanelProjectId =
process.env.NEXT_PUBLIC_MIXPANEL_TOKEN ?? MIXPANEL_DEV_PROJECT_ID;
console.log("************", process.env.NEXT_PUBLIC_MIXPANEL_TOKEN);
try {
mixpanel.init(mixpanelProjectId, {
debug: true,
Expand Down
2 changes: 1 addition & 1 deletion website/src/blocks/AboutMe/AboutMe.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from "@testing-library/react";
import AboutMe from "./AboutMe";

jest.mock("../../Api/Cache");
jest.mock("../../api/Cache");

const highlightsDataMockResponse = [
{
Expand Down
2 changes: 1 addition & 1 deletion website/src/blocks/AboutMe/Highlights/Highlights.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { PageTypes } from "../../../blocks/Navigation/PageTypes";
import Highlights from "./Highlights";

jest.mock("../../../Api/Cache");
jest.mock("../../../api/Cache");

const highlightsDataMockResponse = [
{
Expand Down
2 changes: 1 addition & 1 deletion website/src/blocks/Cards/Cards.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
import { PageTypes } from "../Navigation/PageTypes";
import Cards from "./Cards";

jest.mock("../../Api/Cache");
jest.mock("../../api/Cache");

const projectDataMockResponse = [
{
Expand Down
2 changes: 1 addition & 1 deletion website/src/blocks/Cta/Cta.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from "@testing-library/react";
import Cta from "./Cta";

jest.mock("../../Api/Cache");
jest.mock("../../api/Cache");

const ctaDataMockResponse = [
{
Expand Down
2 changes: 1 addition & 1 deletion website/src/blocks/Footer/Footer.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from "@testing-library/react";
import Footer from "./Footer";

jest.mock("../../Api/Cache");
jest.mock("../../api/Cache");

const ctaDataMockResponse = [
{
Expand Down
2 changes: 1 addition & 1 deletion website/src/blocks/Sidebar/Sidebar.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from "@testing-library/react";
import Sidebar from "./Sidebar";

jest.mock("../../Api/Cache");
jest.mock("../../api/Cache");

const ctaDataMockResponse = [
{
Expand Down

0 comments on commit 3d9dd0c

Please sign in to comment.