2024-10-29 18:24:44 +00:00
|
|
|
import request from 'supertest';
|
2024-10-29 18:26:17 +00:00
|
|
|
import express from 'express';
|
|
|
|
import icalGenerator from 'ical-generator';
|
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
2024-10-29 18:27:29 +00:00
|
|
|
|
2024-10-29 18:29:24 +00:00
|
|
|
const MERGED_CALENDARS_DIR = 'calendar';
|
|
|
|
|
|
|
|
describe('Calendar Merging API', () => {
|
|
|
|
beforeAll(() => {
|
|
|
|
// Ensure the merged calendars directory exists
|
|
|
|
if (!fs.existsSync(MERGED_CALENDARS_DIR)) {
|
|
|
|
fs.mkdirSync(MERGED_CALENDARS_DIR);
|
|
|
|
}
|
|
|
|
});
|
2024-10-29 18:32:00 +00:00
|
|
|
afterAll(() => {
|
|
|
|
// Clean up the merged calendars directory after tests
|
|
|
|
fs.rmdirSync(MERGED_CALENDARS_DIR, { recursive: true });
|
|
|
|
});
|
2024-10-29 18:29:24 +00:00
|
|
|
|
|
|
|
});
|