* wip * wip * wip * Add tests * Update getSchedule.test.ts * Update types.ts * Self review fixes * Update text * PR feedback from Carina * Use utcoffset for range as well * Remove logging from the function that runs on every timeslot * Add one more test * Show x days instead of x+1 days for both ROLLING and ROLLING_WINDOW * refactor tests * Move bookingScenario imports to the top as they import prismock mock that has to be imported very early * More reordering of imports * Fix accidental min update at wrong place * Handle legacy value of zero for periodDays * Range fix * Fix isDateOutOfBound not being checked properly during booking. Also added a test for the case * Fix duplicate element, how the hell it reached there * Use today plus x days for ROLLING periodType * Add disabled for Checkbox as well * Revert logger.ts * Formatting Signed-off-by: zomars <zomars@me.com> * Fix ordering of imports that is causing tests failure --------- Signed-off-by: zomars <zomars@me.com> Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Omar López <zomars@me.com> Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
25 lines
605 B
TypeScript
25 lines
605 B
TypeScript
import prismock from "../../../../../tests/libs/__mocks__/prisma";
|
|
|
|
import { vi, beforeEach, afterEach } from "vitest";
|
|
|
|
const cleanup = async () => {
|
|
await prismock.eventType.deleteMany();
|
|
await prismock.user.deleteMany();
|
|
await prismock.schedule.deleteMany();
|
|
await prismock.selectedCalendar.deleteMany();
|
|
await prismock.credential.deleteMany();
|
|
await prismock.booking.deleteMany();
|
|
await prismock.app.deleteMany();
|
|
vi.useRealTimers();
|
|
};
|
|
|
|
export function setupAndTeardown() {
|
|
beforeEach(async () => {
|
|
await cleanup();
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await cleanup();
|
|
});
|
|
}
|