Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ajaitasaini committed Dec 2, 2024
1 parent cb1318d commit 2ca05b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions services/ui-src/src/utils/api/requestMethods/report.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
putReport,
} from "./report";
// types
import { Report, ReportType } from "types/report";
import { Report, ReportOptions, ReportType } from "types/report";
import { AnyObject } from "types";

const report = {
Expand All @@ -27,8 +27,8 @@ jest.mock("../apiLib", () => ({
}));

const mockReport = {
"mock-report-field": "value",
};
name: "report name",
} as ReportOptions;

describe("utils/report", () => {
beforeEach(() => {
Expand Down

0 comments on commit 2ca05b2

Please sign in to comment.