From b7a419f9cbff69a0f8ffaf14afaa961327d5e343 Mon Sep 17 00:00:00 2001 From: Ryan Mwangi Date: Mon, 4 Nov 2024 21:20:33 +0300 Subject: [PATCH] test(calendar.test.js):Set environment variable for the test directory --- calendar.test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/calendar.test.js b/calendar.test.js index 4732e6e..1e4b4dd 100644 --- a/calendar.test.js +++ b/calendar.test.js @@ -4,6 +4,7 @@ import fs from 'fs'; import path from 'path'; import app from './server'; +const TEST_MERGED_CALENDARS_DIR = path.join(__dirname, 'temp_test_calendar'); const MERGED_CALENDARS_DIR = 'calendar'; const TEST_CALENDARS_DIR = 'test_calendars'; let server;