forked from calcom/cal.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Add collective scheduling tests (calcom#11670)
- Loading branch information
1 parent
1456e2d
commit 2faf24f
Showing
20 changed files
with
2,330 additions
and
813 deletions.
There are no files selected for viewing
299 changes: 214 additions & 85 deletions
299
apps/web/test/utils/bookingScenario/bookingScenario.ts
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
packages/features/bookings/lib/handleNewBooking/test/booking-limits.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { describe } from "vitest"; | ||
|
||
import { test } from "@calcom/web/test/fixtures/fixtures"; | ||
|
||
describe("Booking Limits", () => { | ||
test.todo("Test these cases that were failing earlier https://github.com/calcom/cal.com/pull/10480"); | ||
}); |
10 changes: 10 additions & 0 deletions
10
packages/features/bookings/lib/handleNewBooking/test/dynamic-group-booking.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { describe } from "vitest"; | ||
|
||
import { test } from "@calcom/web/test/fixtures/fixtures"; | ||
|
||
import { setupAndTeardown } from "./lib/setupAndTeardown"; | ||
|
||
describe("handleNewBooking", () => { | ||
setupAndTeardown(); | ||
test.todo("Dynamic Group Booking"); | ||
}); |
Oops, something went wrong.