1
0
Fork 0

declare server variable

This commit is contained in:
Ryan Mwangi 2024-10-30 14:23:44 +03:00
parent 11c60cdf38
commit bed191c7b7
1 changed files with 3 additions and 0 deletions

View File

@ -45,6 +45,7 @@ describe('Calendar Merging API', () => {
const filePath = path.join(MERGED_CALENDARS_DIR, 'Date_Based_Calendar.ics');
expect(fs.existsSync(filePath)).toBe(true);
});
test('Merge time-based calendar', async () => {
const response = await request(app)
.post('/merge')
@ -66,6 +67,7 @@ describe('Calendar Merging API', () => {
const filePath = path.join(MERGED_CALENDARS_DIR, 'Time_Based_Calendar.ics');
expect(fs.existsSync(filePath)).toBe(true);
});
test('Merge calendar without prefix', async () => {
const response = await request(app)
.post('/merge')
@ -87,6 +89,7 @@ describe('Calendar Merging API', () => {
const filePath = path.join(MERGED_CALENDARS_DIR, 'No_Prefix_Calendar.ics');
expect(fs.existsSync(filePath)).toBe(true);
});
test('Merge calendar with override', async () => {
const response = await request(app)
.post('/merge')