Skip to content

Commit

Permalink
feat(cb2-14394): get token and call recalls
Browse files Browse the repository at this point in the history
  • Loading branch information
naathanbrown committed Nov 14, 2024
1 parent bb4ed92 commit f868597
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tests/unit/handler/recalls.unit.test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import type {APIGatewayProxyResult} from "aws-lambda";
import { APIGatewayProxyEvent } from "aws-lambda/trigger/api-gateway-proxy";
import { handler } from '../../../src/handler/recalls';
import {motRecalls} from "../../../src/models/motRecalls";
import {APIGatewayProxyEvent} from "aws-lambda/trigger/api-gateway-proxy";
import {ERRORS} from "../../../src/util/enum";
import { MotRecalls } from "../../../src/models/motRecalls";
import { ERRORS } from "../../../src/util/enum";

describe("Test Recalls endpoint", () => {
beforeEach(() => {
Expand Down Expand Up @@ -71,7 +70,7 @@ describe("Test Recalls endpoint", () => {

});
describe("Constructing return object", () => {
const mockMotRecall : motRecalls = {
const mockMotRecall: MotRecalls = {
vin: "",
manufacturer: "audi",
recalls:
Expand Down

0 comments on commit f868597

Please sign in to comment.