Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Myphz committed Jul 30, 2024
1 parent 8785976 commit 911a8a1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/test/create.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ export default function () {
// Can't create other things with the same id
await create({ client, table: "trips", params: { id: tripId, destination: "idk" }, succeed: false });
await create({ client, table: "lodgings", params: { id: tripId, name: "idk" }, succeed: false });
await create({ client, table: "transports", params: { id: tripId }, succeed: false });
await create({
client,
table: "transports",
params: { id: tripId, arrival_place: "idk", departure_place: "idk" },
succeed: false,
});
await create({ client, table: "places", params: { id: tripId, name: "idk" }, succeed: false });
});
});
Expand Down

0 comments on commit 911a8a1

Please sign in to comment.