forked from ryanmwangi/CalMerger
Merge pull request 'Formatting adjustment in tests' (#3) from janek/CalMerger:master into master
Reviewed-on: ryanmwangi/CalMerger#3
This commit is contained in:
commit
17c3fb7b85
|
@ -12,8 +12,6 @@ describe('Calendar Merging API', () => {
|
|||
beforeAll(async () => {
|
||||
// Start the server
|
||||
server = app.listen(0);
|
||||
console.log(`Server started on port 3000`);
|
||||
|
||||
// Ensure the merged calendars directory exists
|
||||
if (!fs.existsSync(MERGED_CALENDARS_DIR)) {
|
||||
fs.mkdirSync(MERGED_CALENDARS_DIR);
|
||||
|
@ -40,13 +38,13 @@ describe('Calendar Merging API', () => {
|
|||
linkGroupName: 'Date Based Calendar',
|
||||
calendars: [
|
||||
{
|
||||
url: loadCalendarFile(`ferien_bayern_2023.ics`),
|
||||
url: loadCalendarFile('ferien_bayern_2023.ics'),
|
||||
prefix: 'Ferien_Bayern_2023',
|
||||
override: false,
|
||||
},
|
||||
{
|
||||
url: loadCalendarFile(`US_Holidays.ics`),
|
||||
prefix: "US_holidays",
|
||||
url: loadCalendarFile('US_Holidays.ics'),
|
||||
prefix: 'US_holidays',
|
||||
override: false,
|
||||
},
|
||||
],
|
||||
|
@ -66,12 +64,12 @@ describe('Calendar Merging API', () => {
|
|||
linkGroupName: 'Time Based Calendar',
|
||||
calendars: [
|
||||
{
|
||||
url: loadCalendarFile(`other_work.ics`),
|
||||
url: loadCalendarFile('other_work.ics'),
|
||||
prefix: 'other_work',
|
||||
override: false,
|
||||
},
|
||||
{
|
||||
url: loadCalendarFile(`work.ics`),
|
||||
url: loadCalendarFile('work.ics'),
|
||||
prefix: 'work',
|
||||
override: false,
|
||||
},
|
||||
|
@ -93,7 +91,7 @@ describe('Calendar Merging API', () => {
|
|||
linkGroupName: 'No Prefix Calendar',
|
||||
calendars: [
|
||||
{
|
||||
url: loadCalendarFile(`San_Francisco_Public_Holidays.ics`),
|
||||
url: loadCalendarFile('San_Francisco_Public_Holidays.ics'),
|
||||
prefix: '',
|
||||
override: false,
|
||||
},
|
||||
|
@ -115,7 +113,7 @@ describe('Calendar Merging API', () => {
|
|||
linkGroupName: 'Override Calendar',
|
||||
calendars: [
|
||||
{
|
||||
url: loadCalendarFile(`San_Francisco_Public_Holidays.ics`),
|
||||
url: loadCalendarFile('San_Francisco_Public_Holidays.ics'),
|
||||
prefix: 'Override Event',
|
||||
override: true,
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue