Skip to content

Commit

Permalink
Need more sleep zzz
Browse files Browse the repository at this point in the history
  • Loading branch information
alishaz-polymath committed Jan 21, 2025
1 parent 7b798c0 commit 696a36b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1577,7 +1577,7 @@ describe("handleNewBooking", () => {
email: booker.email,
name: booker.name,
},
creationSource: "CreationSource.WEBAPP",
creationSource: CreationSource.WEBAPP,

Check failure on line 1580 in packages/features/bookings/lib/handleNewBooking/test/fresh-booking.test.ts

View workflow job for this annotation

GitHub Actions / Tests / Unit

packages/features/bookings/lib/handleNewBooking/test/fresh-booking.test.ts > handleNewBooking > Fresh/New Booking: > Creation source tests > should create a booking with creation source as WEBAPP

ReferenceError: CreationSource is not defined ❯ packages/features/bookings/lib/handleNewBooking/test/fresh-booking.test.ts:1580:33
},
}),
});
Expand Down Expand Up @@ -1621,7 +1621,7 @@ describe("handleNewBooking", () => {
const createdBooking = await handleNewBooking(req);
expect(createdBooking).toEqual(
expect.objectContaining({
creationSource: "CreationSource.WEBAPP",
creationSource: CreationSource.WEBAPP,
})
);
},
Expand Down

0 comments on commit 696a36b

Please sign in to comment.