From dbbd248477be7c215021bca7621667e4ebe81b16 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 22 Oct 2024 09:01:31 +0000 Subject: [PATCH] docs: Updated for v8.0.2-develop.1 --- develop/coverage/alarm.ts.html | 2 +- develop/coverage/attendee.ts.html | 2 +- develop/coverage/calendar.ts.html | 2 +- develop/coverage/category.ts.html | 2 +- develop/coverage/cobertura-coverage.xml | 2 +- develop/coverage/event.ts.html | 2 +- develop/coverage/index.html | 2 +- develop/coverage/index.ts.html | 2 +- develop/coverage/tools.ts.html | 2 +- develop/coverage/types.ts.html | 2 +- develop/reference/classes/ICalAlarm.html | 58 +- develop/reference/classes/ICalAttendee.html | 60 +- develop/reference/classes/ICalCalendar.html | 64 +- develop/reference/classes/ICalCategory.html | 14 +- develop/reference/classes/ICalEvent.html | 138 +- develop/reference/enums/ICalAlarmType.html | 4 +- develop/reference/enums/ICalAttendeeRole.html | 4 +- .../reference/enums/ICalAttendeeStatus.html | 4 +- develop/reference/enums/ICalAttendeeType.html | 4 +- .../reference/enums/ICalCalendarMethod.html | 4 +- .../reference/enums/ICalEventBusyStatus.html | 4 +- develop/reference/enums/ICalEventClass.html | 4 +- .../enums/ICalEventRepeatingFreq.html | 4 +- develop/reference/enums/ICalEventStatus.html | 4 +- .../enums/ICalEventTransparency.html | 4 +- develop/reference/enums/ICalWeekday.html | 4 +- develop/reference/functions/default.html | 4 +- develop/reference/functions/escape.html | 4 +- develop/reference/functions/foldLines.html | 4 +- develop/reference/functions/formatDate.html | 4 +- develop/reference/functions/formatDateTZ.html | 4 +- develop/reference/hierarchy.html | 2 +- develop/reference/index.html | 4 +- .../interfaces/ICalAlarmBaseData.html | 4 +- .../interfaces/ICalAlarmJSONData.html | 4 +- .../interfaces/ICalAlarmRepeatData.html | 4 +- .../reference/interfaces/ICalAttachment.html | 4 +- .../interfaces/ICalAttendeeData.html | 4 +- .../interfaces/ICalAttendeeJSONData.html | 4 +- .../interfaces/ICalCalendarData.html | 4 +- .../interfaces/ICalCalendarJSONData.html | 4 +- .../interfaces/ICalCalendarProdIdData.html | 4 +- .../interfaces/ICalCategoryData.html | 4 +- .../interfaces/ICalCategoryJSONData.html | 4 +- .../reference/interfaces/ICalDayJsStub.html | 4 +- .../reference/interfaces/ICalDescription.html | 4 +- .../reference/interfaces/ICalEventData.html | 4 +- .../interfaces/ICalEventJSONData.html | 4 +- .../ICalEventJSONRepeatingData.html | 4 +- develop/reference/interfaces/ICalGeo.html | 4 +- .../interfaces/ICalLocationWithTitle.html | 4 +- .../interfaces/ICalLocationWithoutTitle.html | 4 +- .../interfaces/ICalLuxonDateTimeStub.html | 4 +- .../interfaces/ICalMomentDurationStub.html | 4 +- .../reference/interfaces/ICalMomentStub.html | 4 +- .../interfaces/ICalMomentTimezoneStub.html | 4 +- .../reference/interfaces/ICalOrganizer.html | 4 +- .../reference/interfaces/ICalRRuleStub.html | 4 +- .../interfaces/ICalRepeatingOptions.html | 4 +- .../reference/interfaces/ICalTimezone.html | 4 +- develop/reference/modules.html | 4 +- develop/reference/types/ICalAlarmData.html | 2 +- .../reference/types/ICalAlarmRelatesTo.html | 2 +- .../types/ICalAlarmTriggerAfterData.html | 2 +- .../types/ICalAlarmTriggerBeforeData.html | 2 +- .../reference/types/ICalAlarmTriggerData.html | 2 +- .../reference/types/ICalAlarmTypeValue.html | 2 +- .../reference/types/ICalDateTimeValue.html | 4 +- develop/reference/types/ICalLocation.html | 2 +- .../variables/ICalAlarmRelatesTo-1.html | 2 +- develop/tests/index.html | 2 +- develop/tests/mochawesome.json | 3222 ++++++++--------- 72 files changed, 1890 insertions(+), 1890 deletions(-) diff --git a/develop/coverage/alarm.ts.html b/develop/coverage/alarm.ts.html index 0abbb78f..a002bc55 100644 --- a/develop/coverage/alarm.ts.html +++ b/develop/coverage/alarm.ts.html @@ -2314,7 +2314,7 @@

All files alarm.ts

Usually you get an ICalAlarm object like this:

+ICalAlarm | ical-generator - v8.0.2-develop.1

Usually you get an ICalAlarm object like this:

import ical from 'ical-generator';
const calendar = ical();
const event = calendar.createEvent();
const alarm = event.createAlarm();
@@ -6,7 +6,7 @@
import ical, {ICalAlarm} from 'ical-generator';
const alarm = new ICalAlarm();
event.alarms([alarm]);
-

Constructors

Constructors

Methods

attach attendees createAttendee @@ -25,69 +25,69 @@ to query the calendar's timezone and summary when required.

Parameters

Returns ICalAlarm

Methods

  • Get Attachment

    +

Returns ICalAlarm

Methods

  • Get Attachment

    Returns null | {
        mime: null | string;
        uri: string;
    }

    0.2.1

    -
  • Set Alarm attachment. Used to set the alarm sound +

  • Set Alarm attachment. Used to set the alarm sound if alarm type is audio. Defaults to "Basso".

    const cal = ical();
    const event = cal.createEvent();

    event.createAlarm({
    attach: 'https://example.com/notification.aud'
    });

    // OR

    event.createAlarm({
    attach: {
    uri: 'https://example.com/notification.aud',
    mime: 'audio/basic'
    }
    });

    Parameters

    • attachment: null | string | {
          mime?: null | string;
          uri: string;
      }

    Returns this

    0.2.1

    -
  • -
  • Use this method to set the alarm time.

    +
  • Use this method to set the alarm time.

    const cal = ical();
    const event = cal.createEvent();
    const alarm = cal.createAlarm();

    alarm.trigger(600); // -> 10 minutes before event starts
    alarm.trigger(new Date()); // -> now
    @@ -132,25 +132,25 @@
  • trigger
  • triggerAfter
  • -
    +
    diff --git a/develop/reference/classes/ICalAttendee.html b/develop/reference/classes/ICalAttendee.html index 56c8361a..4e007cfd 100644 --- a/develop/reference/classes/ICalAttendee.html +++ b/develop/reference/classes/ICalAttendee.html @@ -1,4 +1,4 @@ -ICalAttendee | ical-generator - v8.0.1-develop.8

    Class ICalAttendee

    Usually you get an ICalAttendee object like this:

    +ICalAttendee | ical-generator - v8.0.2-develop.1

    Class ICalAttendee

    Usually you get an ICalAttendee object like this:

    import ical from 'ical-generator';
    const calendar = ical();
    const event = calendar.createEvent();
    const attendee = event.createAttendee({ email: 'mail@example.com' });
    @@ -6,7 +6,7 @@
    import ical, {ICalAttendee} from 'ical-generator';
    const attendee = new ICalAttendee({ email: 'mail@example.com' });
    event.attendees([attendee]);
    -

    Constructors

    Constructors

    Methods

    delegatedFrom delegatedTo delegatesFrom @@ -26,15 +26,15 @@ required to query the calendar's timezone when required.

    Parameters

    Returns ICalAttendee

    Methods

    • Get the attendee's delegated-from field

      +

    Returns ICalAttendee

    Methods

    • Get the attendee's delegated-from field

      Returns null | ICalAttendee

      0.2.0

      -
    • Set the attendee's delegated-from field

      +
  • Set the attendee's delegated-from field

    Creates a new Attendee if the passed object is not already a ICalAttendee object. Will set the delegatedTo and delegatedFrom attributes.

    -

    Parameters

    Returns this

    • Get the attendee's delegated-to value.

      Returns null | ICalAttendee

      0.2.0

      -
    • Set the attendee's delegated-to field.

      +
  • Set the attendee's delegated-to field.

    Creates a new Attendee if the passed object is not already a ICalAttendee object. Will set the delegatedTo and delegatedFrom attributes.

    @@ -43,76 +43,76 @@

    Parameters

    Returns this

    0.2.0

    -
  • +
    diff --git a/develop/reference/classes/ICalCalendar.html b/develop/reference/classes/ICalCalendar.html index bf05773b..9e18035c 100644 --- a/develop/reference/classes/ICalCalendar.html +++ b/develop/reference/classes/ICalCalendar.html @@ -1,4 +1,4 @@ -ICalCalendar | ical-generator - v8.0.1-develop.8

    Class ICalCalendar

    Usually you get an ICalCalendar object like this:

    +ICalCalendar | ical-generator - v8.0.2-develop.1

    Class ICalCalendar

    Usually you get an ICalCalendar object like this:

    import ical from 'ical-generator';
    const calendar = ical();
    @@ -6,7 +6,7 @@
    import {ICalCalendar} from 'ical-generator';
    const calendar = new ICalCalendar();
    -

    Constructors

    Constructors

    Methods

    clear createEvent description @@ -37,42 +37,42 @@

    Parameters

    Returns ICalCalendar

    Methods

    • Remove all events from the calendar without +

    Returns ICalCalendar

    Methods

    • Remove all events from the calendar without touching any other data like name or prodId.

      Returns this

      2.0.0-develop.1

      -
    • Creates a new ICalEvent and returns it. Use options to prefill the event's attributes. +

    • Creates a new ICalEvent and returns it. Use options to prefill the event's attributes. Calling this method without options will create an empty event.

      import ical from 'ical-generator';

      // or use require:
      // const { default: ical } = require('ical-generator');

      const cal = ical();
      const event = cal.createEvent({summary: 'My Event'});

      // overwrite event summary
      event.summary('Your Event');

      Parameters

      Returns ICalEvent

      0.2.0

      -
    • Get your feed's description

      +
    • Get your feed's URL

      Returns null | string

      0.2.5

      -
    • Set your feed's URL

      +
    • Set your feed's URL

      calendar.url('http://example.com/my/feed.ical');
       

      Parameters

      • url: null | string

      Returns this

      0.2.5

      -
    • Set X-* attributes. Woun't filter double attributes, +

    • Set X-* attributes. Woun't filter double attributes, which are also added by another method (e.g. busystatus), so these attributes may be inserted twice.

      calendar.x([
      {
      key: "X-MY-CUSTOM-ATTR",
      value: "1337!"
      }
      ]);

      calendar.x([
      ["X-MY-CUSTOM-ATTR", "1337!"]
      ]);

      calendar.x({
      "X-MY-CUSTOM-ATTR": "1337!"
      }); @@ -195,7 +195,7 @@

      Parameters

      • keyOrArray: [string, string][] | Record<string, string> | {
            key: string;
            value: string;
        }[]

      Returns this

      1.9.0

      -
    • Set a X-* attribute. Woun't filter double attributes, +

    • Set a X-* attribute. Woun't filter double attributes, which are also added by another method (e.g. busystatus), so these attributes may be inserted twice.

      calendar.x("X-MY-CUSTOM-ATTR", "1337!");
      @@ -209,6 +209,6 @@
       

      Parameters

      • keyOrArray: string
      • value: string

      Returns this

      1.9.0

      -
    • Get all custom X-* attributes.

      +
    • Get all custom X-* attributes.

      Returns {
          key: string;
          value: string;
      }[]

      1.9.0

      -
    +
    diff --git a/develop/reference/classes/ICalCategory.html b/develop/reference/classes/ICalCategory.html index 9d0781f4..50e1e4fe 100644 --- a/develop/reference/classes/ICalCategory.html +++ b/develop/reference/classes/ICalCategory.html @@ -1,4 +1,4 @@ -ICalCategory | ical-generator - v8.0.1-develop.8

    Class ICalCategory

    Usually you get an ICalCategory object like this:

    +ICalCategory | ical-generator - v8.0.2-develop.1

    Class ICalCategory

    Usually you get an ICalCategory object like this:

    import ical from 'ical-generator';
    const calendar = ical();
    const event = calendar.createEvent();
    const category = event.createCategory();
    @@ -6,21 +6,21 @@
    import ical, {ICalCategory} from 'ical-generator';
    const category = new ICalCategory();
    event.categories([category]);
    -

    Constructors

    Constructors

    Methods

    Constructors

    Methods

    • Get the category name

      +

    Returns ICalCategory

    Methods

    • Get the category name

      Returns string

      0.3.0

      -
    • Set the category name

      +
  • Set the category name

    Parameters

    • name: string

    Returns this

    0.3.0

    -
    • Return a shallow copy of the category's options for JSON stringification. +

    • Return generated category name as a string.

      +
    • Return generated category name as a string.

      console.log(category.toString());
       
      -

      Returns string

    +

    Returns string

    diff --git a/develop/reference/classes/ICalEvent.html b/develop/reference/classes/ICalEvent.html index 0b1c3225..8a83fe70 100644 --- a/develop/reference/classes/ICalEvent.html +++ b/develop/reference/classes/ICalEvent.html @@ -1,8 +1,8 @@ -ICalEvent | ical-generator - v8.0.1-develop.8

    Usually you get an ICalEvent object like this:

    +ICalEvent | ical-generator - v8.0.2-develop.1

    Usually you get an ICalEvent object like this:

    import ical from 'ical-generator';
    const calendar = ical();
    const event = calendar.createEvent();
    -

    Constructors

    Constructors

    Methods

    alarms allDay attachments @@ -42,16 +42,16 @@ required to query the calendar's timezone when required.

    Parameters

    Returns ICalEvent

    Methods

    Returns ICalEvent

    Methods

  • Add one or multiple alarms

    const event = ical().createEvent();

    cal.alarms([
    {type: ICalAlarmType.display, trigger: 600},
    {type: ICalAlarmType.audio, trigger: 300}
    ]);

    cal.alarms(); // --> [ICalAlarm, ICalAlarm]

    Parameters

    Returns this

    0.2.0

    -
    • Get the event's allDay flag

      +

    Returns this

    Returns this

    Returns this

    +
    diff --git a/develop/reference/enums/ICalAlarmType.html b/develop/reference/enums/ICalAlarmType.html index a47e062b..c6df2884 100644 --- a/develop/reference/enums/ICalAlarmType.html +++ b/develop/reference/enums/ICalAlarmType.html @@ -1,4 +1,4 @@ -ICalAlarmType | ical-generator - v8.0.1-develop.8

    Enumeration ICalAlarmType

    Enumeration Members

    audio +ICalAlarmType | ical-generator - v8.0.2-develop.1

    Enumeration ICalAlarmType

    Enumeration Members

    Enumeration Members

    audio
    display
    email
    +

    Enumeration Members

    audio
    display
    email
    diff --git a/develop/reference/enums/ICalAttendeeRole.html b/develop/reference/enums/ICalAttendeeRole.html index 6cba5f78..eafdaa96 100644 --- a/develop/reference/enums/ICalAttendeeRole.html +++ b/develop/reference/enums/ICalAttendeeRole.html @@ -1,5 +1,5 @@ -ICalAttendeeRole | ical-generator - v8.0.1-develop.8

    Enumeration ICalAttendeeRole

    Enumeration Members

    CHAIR +ICalAttendeeRole | ical-generator - v8.0.2-develop.1

    Enumeration ICalAttendeeRole

    Enumeration Members

    Enumeration Members

    CHAIR
    NON
    OPT
    REQ
    +

    Enumeration Members

    CHAIR
    NON
    OPT
    REQ
    diff --git a/develop/reference/enums/ICalAttendeeStatus.html b/develop/reference/enums/ICalAttendeeStatus.html index 1395567f..24e08a65 100644 --- a/develop/reference/enums/ICalAttendeeStatus.html +++ b/develop/reference/enums/ICalAttendeeStatus.html @@ -1,6 +1,6 @@ -ICalAttendeeStatus | ical-generator - v8.0.1-develop.8

    Enumeration ICalAttendeeStatus

    Enumeration Members

    ACCEPTED +ICalAttendeeStatus | ical-generator - v8.0.2-develop.1

    Enumeration ICalAttendeeStatus

    Enumeration Members

    ACCEPTED
    DECLINED
    DELEGATED
    NEEDSACTION
    TENTATIVE
    +

    Enumeration Members

    ACCEPTED
    DECLINED
    DELEGATED
    NEEDSACTION
    TENTATIVE
    diff --git a/develop/reference/enums/ICalAttendeeType.html b/develop/reference/enums/ICalAttendeeType.html index b35aa64b..f9fc452f 100644 --- a/develop/reference/enums/ICalAttendeeType.html +++ b/develop/reference/enums/ICalAttendeeType.html @@ -1,6 +1,6 @@ -ICalAttendeeType | ical-generator - v8.0.1-develop.8

    Enumeration ICalAttendeeType

    Enumeration Members

    GROUP +ICalAttendeeType | ical-generator - v8.0.2-develop.1

    Enumeration ICalAttendeeType

    Enumeration Members

    Enumeration Members

    GROUP
    INDIVIDUAL
    RESOURCE
    ROOM
    UNKNOWN
    +

    Enumeration Members

    GROUP
    INDIVIDUAL
    RESOURCE
    ROOM
    UNKNOWN
    diff --git a/develop/reference/enums/ICalCalendarMethod.html b/develop/reference/enums/ICalCalendarMethod.html index 53d99f63..4454ea52 100644 --- a/develop/reference/enums/ICalCalendarMethod.html +++ b/develop/reference/enums/ICalCalendarMethod.html @@ -1,4 +1,4 @@ -ICalCalendarMethod | ical-generator - v8.0.1-develop.8

    Enumeration ICalCalendarMethod

    Enumeration Members

    ADD +ICalCalendarMethod | ical-generator - v8.0.2-develop.1

    Enumeration ICalCalendarMethod

    Enumeration Members

    Enumeration Members

    ADD
    CANCEL
    COUNTER
    DECLINECOUNTER
    PUBLISH
    REFRESH
    REPLY
    REQUEST
    +

    Enumeration Members

    ADD
    CANCEL
    COUNTER
    DECLINECOUNTER
    PUBLISH
    REFRESH
    REPLY
    REQUEST
    diff --git a/develop/reference/enums/ICalEventBusyStatus.html b/develop/reference/enums/ICalEventBusyStatus.html index df527bb0..0889c562 100644 --- a/develop/reference/enums/ICalEventBusyStatus.html +++ b/develop/reference/enums/ICalEventBusyStatus.html @@ -1,5 +1,5 @@ -ICalEventBusyStatus | ical-generator - v8.0.1-develop.8

    Enumeration ICalEventBusyStatus

    Enumeration Members

    BUSY +ICalEventBusyStatus | ical-generator - v8.0.2-develop.1

    Enumeration ICalEventBusyStatus

    Enumeration Members

    Enumeration Members

    BUSY
    FREE
    OOF
    TENTATIVE
    +

    Enumeration Members

    BUSY
    FREE
    OOF
    TENTATIVE
    diff --git a/develop/reference/enums/ICalEventClass.html b/develop/reference/enums/ICalEventClass.html index facdb0ff..bab93171 100644 --- a/develop/reference/enums/ICalEventClass.html +++ b/develop/reference/enums/ICalEventClass.html @@ -1,4 +1,4 @@ -ICalEventClass | ical-generator - v8.0.1-develop.8

    Enumeration ICalEventClass

    Enumeration Members

    CONFIDENTIAL +ICalEventClass | ical-generator - v8.0.2-develop.1

    Enumeration ICalEventClass

    Enumeration Members

    Enumeration Members

    CONFIDENTIAL
    PRIVATE
    PUBLIC
    +

    Enumeration Members

    CONFIDENTIAL
    PRIVATE
    PUBLIC
    diff --git a/develop/reference/enums/ICalEventRepeatingFreq.html b/develop/reference/enums/ICalEventRepeatingFreq.html index 3e38250c..0015b385 100644 --- a/develop/reference/enums/ICalEventRepeatingFreq.html +++ b/develop/reference/enums/ICalEventRepeatingFreq.html @@ -1,8 +1,8 @@ -ICalEventRepeatingFreq | ical-generator - v8.0.1-develop.8

    Enumeration ICalEventRepeatingFreq

    Enumeration Members

    DAILY +ICalEventRepeatingFreq | ical-generator - v8.0.2-develop.1

    Enumeration ICalEventRepeatingFreq

    Enumeration Members

    DAILY
    HOURLY
    MINUTELY
    MONTHLY
    SECONDLY
    WEEKLY
    YEARLY
    +

    Enumeration Members

    DAILY
    HOURLY
    MINUTELY
    MONTHLY
    SECONDLY
    WEEKLY
    YEARLY
    diff --git a/develop/reference/enums/ICalEventStatus.html b/develop/reference/enums/ICalEventStatus.html index 3ee93247..30e555f7 100644 --- a/develop/reference/enums/ICalEventStatus.html +++ b/develop/reference/enums/ICalEventStatus.html @@ -1,4 +1,4 @@ -ICalEventStatus | ical-generator - v8.0.1-develop.8

    Enumeration ICalEventStatus

    Enumeration Members

    CANCELLED +ICalEventStatus | ical-generator - v8.0.2-develop.1

    Enumeration ICalEventStatus

    Enumeration Members

    Enumeration Members

    CANCELLED
    CONFIRMED
    TENTATIVE
    +

    Enumeration Members

    CANCELLED
    CONFIRMED
    TENTATIVE
    diff --git a/develop/reference/enums/ICalEventTransparency.html b/develop/reference/enums/ICalEventTransparency.html index c4fd7eeb..9d9f4920 100644 --- a/develop/reference/enums/ICalEventTransparency.html +++ b/develop/reference/enums/ICalEventTransparency.html @@ -1,3 +1,3 @@ -ICalEventTransparency | ical-generator - v8.0.1-develop.8

    Enumeration ICalEventTransparency

    Enumeration Members

    OPAQUE +ICalEventTransparency | ical-generator - v8.0.2-develop.1

    Enumeration ICalEventTransparency

    Enumeration Members

    Enumeration Members

    OPAQUE
    TRANSPARENT
    +

    Enumeration Members

    OPAQUE
    TRANSPARENT
    diff --git a/develop/reference/enums/ICalWeekday.html b/develop/reference/enums/ICalWeekday.html index 06a1c7aa..9fab4e1f 100644 --- a/develop/reference/enums/ICalWeekday.html +++ b/develop/reference/enums/ICalWeekday.html @@ -1,8 +1,8 @@ -ICalWeekday | ical-generator - v8.0.1-develop.8

    Enumeration ICalWeekday

    Enumeration Members

    FR +ICalWeekday | ical-generator - v8.0.2-develop.1

    Enumeration ICalWeekday

    Enumeration Members

    Enumeration Members

    FR
    MO
    SA
    SU
    TH
    TU
    WE
    +

    Enumeration Members

    FR
    MO
    SA
    SU
    TH
    TU
    WE
    diff --git a/develop/reference/functions/default.html b/develop/reference/functions/default.html index 9b2f86ef..cb67938e 100644 --- a/develop/reference/functions/default.html +++ b/develop/reference/functions/default.html @@ -1,4 +1,4 @@ -default | ical-generator - v8.0.1-develop.8

    Function default

    • Create a new, empty calendar and returns it.

      +default | ical-generator - v8.0.2-develop.1

      Function default

      • Create a new, empty calendar and returns it.

        import ical from 'ical-generator';

        // or use require:
        // const { default: ical } = require('ical-generator');

        const cal = ical();
        @@ -7,4 +7,4 @@

        Parameters

        Returns ICalCalendar

      +

    Returns ICalCalendar

    diff --git a/develop/reference/functions/escape.html b/develop/reference/functions/escape.html index d169bdab..682e5063 100644 --- a/develop/reference/functions/escape.html +++ b/develop/reference/functions/escape.html @@ -1,2 +1,2 @@ -escape | ical-generator - v8.0.1-develop.8

    Function escape

    • Escapes special characters in the given string

      -

      Parameters

      • str: unknown
      • inQuotes: boolean

      Returns string

    +escape | ical-generator - v8.0.2-develop.1

    Function escape

    • Escapes special characters in the given string

      +

      Parameters

      • str: unknown
      • inQuotes: boolean

      Returns string

    diff --git a/develop/reference/functions/foldLines.html b/develop/reference/functions/foldLines.html index 80547552..fa424a53 100644 --- a/develop/reference/functions/foldLines.html +++ b/develop/reference/functions/foldLines.html @@ -1,2 +1,2 @@ -foldLines | ical-generator - v8.0.1-develop.8

    Function foldLines

    • Trim line length of given string

      -

      Parameters

      • input: string

      Returns string

    +foldLines | ical-generator - v8.0.2-develop.1

    Function foldLines

    • Trim line length of given string

      +

      Parameters

      • input: string

      Returns string

    diff --git a/develop/reference/functions/formatDate.html b/develop/reference/functions/formatDate.html index a876ecfb..d8e24ae3 100644 --- a/develop/reference/functions/formatDate.html +++ b/develop/reference/functions/formatDate.html @@ -1,2 +1,2 @@ -formatDate | ical-generator - v8.0.1-develop.8

    Function formatDate

    • Converts a valid date/time object supported by this library to a string.

      -

      Parameters

      • timezone: null | string
      • d: ICalDateTimeValue
      • Optionaldateonly: boolean
      • Optionalfloating: boolean

      Returns string

    +formatDate | ical-generator - v8.0.2-develop.1

    Function formatDate

    • Converts a valid date/time object supported by this library to a string.

      +

      Parameters

      • timezone: null | string
      • d: ICalDateTimeValue
      • Optionaldateonly: boolean
      • Optionalfloating: boolean

      Returns string

    diff --git a/develop/reference/functions/formatDateTZ.html b/develop/reference/functions/formatDateTZ.html index f6a981f9..b59f9547 100644 --- a/develop/reference/functions/formatDateTZ.html +++ b/develop/reference/functions/formatDateTZ.html @@ -1,4 +1,4 @@ -formatDateTZ | ical-generator - v8.0.1-develop.8

    Function formatDateTZ

    • Converts a valid date/time object supported by this library to a string. +formatDateTZ | ical-generator - v8.0.2-develop.1

      Function formatDateTZ

      • Converts a valid date/time object supported by this library to a string. For information about this format, see RFC 5545, section 3.3.5 https://tools.ietf.org/html/rfc5545#section-3.3.5

        -

        Parameters

        • timezone: null | string
        • property: string
        • date: ICalDateTimeValue
        • OptionaleventData: {
              floating?: null | boolean;
              timezone?: null | string;
          }
          • Optionalfloating?: null | boolean
          • Optionaltimezone?: null | string

        Returns string

      +

      Parameters

      • timezone: null | string
      • property: string
      • date: ICalDateTimeValue
      • OptionaleventData: {
            floating?: null | boolean;
            timezone?: null | string;
        }
        • Optionalfloating?: null | boolean
        • Optionaltimezone?: null | string

      Returns string

    diff --git a/develop/reference/hierarchy.html b/develop/reference/hierarchy.html index 46c2ff26..b8ff8d61 100644 --- a/develop/reference/hierarchy.html +++ b/develop/reference/hierarchy.html @@ -1 +1 @@ -ical-generator - v8.0.1-develop.8

    ical-generator - v8.0.1-develop.8

    Class Hierarchy

    +ical-generator - v8.0.2-develop.1

    ical-generator - v8.0.2-develop.1

    Class Hierarchy

    diff --git a/develop/reference/index.html b/develop/reference/index.html index 46c4b8a6..07690261 100644 --- a/develop/reference/index.html +++ b/develop/reference/index.html @@ -1,4 +1,4 @@ -ical-generator - v8.0.1-develop.8

    ical-generator - v8.0.1-develop.8


    +ical-generator - v8.0.2-develop.1

    ical-generator - v8.0.2-develop.1



    @@ -61,4 +61,4 @@ is available in node.js ≥ 11.0.0 and all modern browsers. Outdated browsers may not have the necessary API and generate this error when generating the calendar.

    Copyright (c) Sebastian Pekarek under the MIT license.

    -
    +
    diff --git a/develop/reference/interfaces/ICalAlarmBaseData.html b/develop/reference/interfaces/ICalAlarmBaseData.html index d4dad090..50c580c5 100644 --- a/develop/reference/interfaces/ICalAlarmBaseData.html +++ b/develop/reference/interfaces/ICalAlarmBaseData.html @@ -1,4 +1,4 @@ -ICalAlarmBaseData | ical-generator - v8.0.1-develop.8

    Interface ICalAlarmBaseData

    interface ICalAlarmBaseData {
        attach?: null | string | ICalAttachment;
        attendees?: ICalAttendee[] | ICalAttendeeData[];
        description?: null | string;
        relatesTo?: null | ICalAlarmRelatesTo;
        repeat?: null | ICalAlarmRepeatData;
        summary?: null | string;
        type?: ICalAlarmType;
        x?: [string, string][] | Record<string, string> | {
            key: string;
            value: string;
        }[];
    }

    Properties

    attach? +ICalAlarmBaseData | ical-generator - v8.0.2-develop.1

    Interface ICalAlarmBaseData

    interface ICalAlarmBaseData {
        attach?: null | string | ICalAttachment;
        attendees?: ICalAttendee[] | ICalAttendeeData[];
        description?: null | string;
        relatesTo?: null | ICalAlarmRelatesTo;
        repeat?: null | ICalAlarmRepeatData;
        summary?: null | string;
        type?: ICalAlarmType;
        x?: [string, string][] | Record<string, string> | {
            key: string;
            value: string;
        }[];
    }

    Properties

    attach?: null | string | ICalAttachment
    attendees?: ICalAttendee[] | ICalAttendeeData[]
    description?: null | string
    relatesTo?: null | ICalAlarmRelatesTo
    repeat?: null | ICalAlarmRepeatData
    summary?: null | string
    x?: [string, string][] | Record<string, string> | {
        key: string;
        value: string;
    }[]
    +

    Properties

    attach?: null | string | ICalAttachment
    attendees?: ICalAttendee[] | ICalAttendeeData[]
    description?: null | string
    relatesTo?: null | ICalAlarmRelatesTo
    repeat?: null | ICalAlarmRepeatData
    summary?: null | string
    x?: [string, string][] | Record<string, string> | {
        key: string;
        value: string;
    }[]
    diff --git a/develop/reference/interfaces/ICalAlarmJSONData.html b/develop/reference/interfaces/ICalAlarmJSONData.html index 0e814d8d..5c54428e 100644 --- a/develop/reference/interfaces/ICalAlarmJSONData.html +++ b/develop/reference/interfaces/ICalAlarmJSONData.html @@ -1,4 +1,4 @@ -ICalAlarmJSONData | ical-generator - v8.0.1-develop.8

    Interface ICalAlarmJSONData

    interface ICalAlarmJSONData {
        attach: null | ICalAttachment;
        attendees: ICalAttendee[];
        description: null | string;
        interval: null | number;
        relatesTo: null | ICalAlarmRelatesTo;
        repeat: null | ICalAlarmRepeatData;
        summary: null | string;
        trigger: string | number;
        type: ICalAlarmType;
        x: {
            key: string;
            value: string;
        }[];
    }

    Properties

    attach +ICalAlarmJSONData | ical-generator - v8.0.2-develop.1

    Interface ICalAlarmJSONData

    interface ICalAlarmJSONData {
        attach: null | ICalAttachment;
        attendees: ICalAttendee[];
        description: null | string;
        interval: null | number;
        relatesTo: null | ICalAlarmRelatesTo;
        repeat: null | ICalAlarmRepeatData;
        summary: null | string;
        trigger: string | number;
        type: ICalAlarmType;
        x: {
            key: string;
            value: string;
        }[];
    }

    Properties

    Properties

    attach: null | ICalAttachment
    attendees: ICalAttendee[]
    description: null | string
    interval: null | number
    relatesTo: null | ICalAlarmRelatesTo
    repeat: null | ICalAlarmRepeatData
    summary: null | string
    trigger: string | number
    x: {
        key: string;
        value: string;
    }[]
    +

    Properties

    attach: null | ICalAttachment
    attendees: ICalAttendee[]
    description: null | string
    interval: null | number
    relatesTo: null | ICalAlarmRelatesTo
    repeat: null | ICalAlarmRepeatData
    summary: null | string
    trigger: string | number
    x: {
        key: string;
        value: string;
    }[]
    diff --git a/develop/reference/interfaces/ICalAlarmRepeatData.html b/develop/reference/interfaces/ICalAlarmRepeatData.html index c5e75a38..d4eda830 100644 --- a/develop/reference/interfaces/ICalAlarmRepeatData.html +++ b/develop/reference/interfaces/ICalAlarmRepeatData.html @@ -1,3 +1,3 @@ -ICalAlarmRepeatData | ical-generator - v8.0.1-develop.8

    Interface ICalAlarmRepeatData

    interface ICalAlarmRepeatData {
        interval: number;
        times: number;
    }

    Properties

    interval +ICalAlarmRepeatData | ical-generator - v8.0.2-develop.1

    Interface ICalAlarmRepeatData

    interface ICalAlarmRepeatData {
        interval: number;
        times: number;
    }

    Properties

    Properties

    interval: number
    times: number
    +

    Properties

    interval: number
    times: number
    diff --git a/develop/reference/interfaces/ICalAttachment.html b/develop/reference/interfaces/ICalAttachment.html index ee1416f2..ab19d967 100644 --- a/develop/reference/interfaces/ICalAttachment.html +++ b/develop/reference/interfaces/ICalAttachment.html @@ -1,3 +1,3 @@ -ICalAttachment | ical-generator - v8.0.1-develop.8

    Interface ICalAttachment

    interface ICalAttachment {
        mime: null | string;
        uri: string;
    }

    Properties

    mime +ICalAttachment | ical-generator - v8.0.2-develop.1

    Interface ICalAttachment

    interface ICalAttachment {
        mime: null | string;
        uri: string;
    }

    Properties

    Properties

    mime: null | string
    uri: string
    +

    Properties

    mime: null | string
    uri: string
    diff --git a/develop/reference/interfaces/ICalAttendeeData.html b/develop/reference/interfaces/ICalAttendeeData.html index c13a01cd..697f8676 100644 --- a/develop/reference/interfaces/ICalAttendeeData.html +++ b/develop/reference/interfaces/ICalAttendeeData.html @@ -1,4 +1,4 @@ -ICalAttendeeData | ical-generator - v8.0.1-develop.8

    Interface ICalAttendeeData

    interface ICalAttendeeData {
        delegatedFrom?:
            | null
            | string
            | ICalAttendee
            | ICalAttendeeData;
        delegatedTo?:
            | null
            | string
            | ICalAttendee
            | ICalAttendeeData;
        delegatesFrom?:
            | null
            | string
            | ICalAttendee
            | ICalAttendeeData;
        delegatesTo?:
            | null
            | string
            | ICalAttendee
            | ICalAttendeeData;
        email: string;
        mailto?: null | string;
        name?: null | string;
        role?: ICalAttendeeRole;
        rsvp?: null | boolean;
        sentBy?: null | string;
        status?: null | ICalAttendeeStatus;
        type?: null | ICalAttendeeType;
        x?: [string, string][] | Record<string, string> | {
            key: string;
            value: string;
        }[];
    }

    Properties

    delegatedFrom? +ICalAttendeeData | ical-generator - v8.0.2-develop.1

    Interface ICalAttendeeData

    interface ICalAttendeeData {
        delegatedFrom?:
            | null
            | string
            | ICalAttendee
            | ICalAttendeeData;
        delegatedTo?:
            | null
            | string
            | ICalAttendee
            | ICalAttendeeData;
        delegatesFrom?:
            | null
            | string
            | ICalAttendee
            | ICalAttendeeData;
        delegatesTo?:
            | null
            | string
            | ICalAttendee
            | ICalAttendeeData;
        email: string;
        mailto?: null | string;
        name?: null | string;
        role?: ICalAttendeeRole;
        rsvp?: null | boolean;
        sentBy?: null | string;
        status?: null | ICalAttendeeStatus;
        type?: null | ICalAttendeeType;
        x?: [string, string][] | Record<string, string> | {
            key: string;
            value: string;
        }[];
    }

    Properties

    delegatedFrom?:
        | null
        | string
        | ICalAttendee
        | ICalAttendeeData
    delegatedTo?:
        | null
        | string
        | ICalAttendee
        | ICalAttendeeData
    delegatesFrom?:
        | null
        | string
        | ICalAttendee
        | ICalAttendeeData
    delegatesTo?:
        | null
        | string
        | ICalAttendee
        | ICalAttendeeData
    email: string
    mailto?: null | string
    name?: null | string
    rsvp?: null | boolean
    sentBy?: null | string
    status?: null | ICalAttendeeStatus
    type?: null | ICalAttendeeType
    x?: [string, string][] | Record<string, string> | {
        key: string;
        value: string;
    }[]
    +

    Properties

    delegatedFrom?:
        | null
        | string
        | ICalAttendee
        | ICalAttendeeData
    delegatedTo?:
        | null
        | string
        | ICalAttendee
        | ICalAttendeeData
    delegatesFrom?:
        | null
        | string
        | ICalAttendee
        | ICalAttendeeData
    delegatesTo?:
        | null
        | string
        | ICalAttendee
        | ICalAttendeeData
    email: string
    mailto?: null | string
    name?: null | string
    rsvp?: null | boolean
    sentBy?: null | string
    status?: null | ICalAttendeeStatus
    type?: null | ICalAttendeeType
    x?: [string, string][] | Record<string, string> | {
        key: string;
        value: string;
    }[]
    diff --git a/develop/reference/interfaces/ICalAttendeeJSONData.html b/develop/reference/interfaces/ICalAttendeeJSONData.html index 8cbd9b1d..7da7a973 100644 --- a/develop/reference/interfaces/ICalAttendeeJSONData.html +++ b/develop/reference/interfaces/ICalAttendeeJSONData.html @@ -1,4 +1,4 @@ -ICalAttendeeJSONData | ical-generator - v8.0.1-develop.8

    Interface ICalAttendeeJSONData

    interface ICalAttendeeJSONData {
        delegatedFrom: null | string;
        delegatedTo: null | string;
        email: string;
        mailto: null | string;
        name: null | string;
        role: ICalAttendeeRole;
        rsvp: null | boolean;
        sentBy: null | string;
        status: null | ICalAttendeeStatus;
        type: null | ICalAttendeeType;
        x: {
            key: string;
            value: string;
        }[];
    }

    Properties

    delegatedFrom +ICalAttendeeJSONData | ical-generator - v8.0.2-develop.1

    Interface ICalAttendeeJSONData

    interface ICalAttendeeJSONData {
        delegatedFrom: null | string;
        delegatedTo: null | string;
        email: string;
        mailto: null | string;
        name: null | string;
        role: ICalAttendeeRole;
        rsvp: null | boolean;
        sentBy: null | string;
        status: null | ICalAttendeeStatus;
        type: null | ICalAttendeeType;
        x: {
            key: string;
            value: string;
        }[];
    }

    Properties

    Properties

    delegatedFrom: null | string
    delegatedTo: null | string
    email: string
    mailto: null | string
    name: null | string
    rsvp: null | boolean
    sentBy: null | string
    status: null | ICalAttendeeStatus
    type: null | ICalAttendeeType
    x: {
        key: string;
        value: string;
    }[]
    +

    Properties

    delegatedFrom: null | string
    delegatedTo: null | string
    email: string
    mailto: null | string
    name: null | string
    rsvp: null | boolean
    sentBy: null | string
    status: null | ICalAttendeeStatus
    type: null | ICalAttendeeType
    x: {
        key: string;
        value: string;
    }[]
    diff --git a/develop/reference/interfaces/ICalCalendarData.html b/develop/reference/interfaces/ICalCalendarData.html index 2c4ea16a..5fef22b0 100644 --- a/develop/reference/interfaces/ICalCalendarData.html +++ b/develop/reference/interfaces/ICalCalendarData.html @@ -1,4 +1,4 @@ -ICalCalendarData | ical-generator - v8.0.1-develop.8

    Interface ICalCalendarData

    interface ICalCalendarData {
        description?: null | string;
        events?: (ICalEvent | ICalEventData)[];
        method?: null | ICalCalendarMethod;
        name?: null | string;
        prodId?: string | ICalCalendarProdIdData;
        scale?: null | string;
        source?: null | string;
        timezone?: null | string | ICalTimezone;
        ttl?: null | number | ICalMomentDurationStub;
        url?: null | string;
        x?: [string, string][] | Record<string, string> | {
            key: string;
            value: string;
        }[];
    }

    Properties

    description? +ICalCalendarData | ical-generator - v8.0.2-develop.1

    Interface ICalCalendarData

    interface ICalCalendarData {
        description?: null | string;
        events?: (ICalEvent | ICalEventData)[];
        method?: null | ICalCalendarMethod;
        name?: null | string;
        prodId?: string | ICalCalendarProdIdData;
        scale?: null | string;
        source?: null | string;
        timezone?: null | string | ICalTimezone;
        ttl?: null | number | ICalMomentDurationStub;
        url?: null | string;
        x?: [string, string][] | Record<string, string> | {
            key: string;
            value: string;
        }[];
    }

    Properties

    Properties

    description?: null | string
    events?: (ICalEvent | ICalEventData)[]
    method?: null | ICalCalendarMethod
    name?: null | string
    prodId?: string | ICalCalendarProdIdData
    scale?: null | string
    source?: null | string
    timezone?: null | string | ICalTimezone
    ttl?: null | number | ICalMomentDurationStub
    url?: null | string
    x?: [string, string][] | Record<string, string> | {
        key: string;
        value: string;
    }[]
    +

    Properties

    description?: null | string
    events?: (ICalEvent | ICalEventData)[]
    method?: null | ICalCalendarMethod
    name?: null | string
    prodId?: string | ICalCalendarProdIdData
    scale?: null | string
    source?: null | string
    timezone?: null | string | ICalTimezone
    ttl?: null | number | ICalMomentDurationStub
    url?: null | string
    x?: [string, string][] | Record<string, string> | {
        key: string;
        value: string;
    }[]
    diff --git a/develop/reference/interfaces/ICalCalendarJSONData.html b/develop/reference/interfaces/ICalCalendarJSONData.html index 60dc0f47..b6ddc31a 100644 --- a/develop/reference/interfaces/ICalCalendarJSONData.html +++ b/develop/reference/interfaces/ICalCalendarJSONData.html @@ -1,4 +1,4 @@ -ICalCalendarJSONData | ical-generator - v8.0.1-develop.8

    Interface ICalCalendarJSONData

    interface ICalCalendarJSONData {
        description: null | string;
        events: ICalEventJSONData[];
        method: null | ICalCalendarMethod;
        name: null | string;
        prodId: string;
        scale: null | string;
        source: null | string;
        timezone: null | string;
        ttl: null | number;
        url: null | string;
        x: {
            key: string;
            value: string;
        }[];
    }

    Properties

    description +ICalCalendarJSONData | ical-generator - v8.0.2-develop.1

    Interface ICalCalendarJSONData

    interface ICalCalendarJSONData {
        description: null | string;
        events: ICalEventJSONData[];
        method: null | ICalCalendarMethod;
        name: null | string;
        prodId: string;
        scale: null | string;
        source: null | string;
        timezone: null | string;
        ttl: null | number;
        url: null | string;
        x: {
            key: string;
            value: string;
        }[];
    }

    Properties

    description events method name @@ -9,4 +9,4 @@ ttl url x -

    Properties

    description: null | string
    method: null | ICalCalendarMethod
    name: null | string
    prodId: string
    scale: null | string
    source: null | string
    timezone: null | string
    ttl: null | number
    url: null | string
    x: {
        key: string;
        value: string;
    }[]
    +

    Properties

    description: null | string
    method: null | ICalCalendarMethod
    name: null | string
    prodId: string
    scale: null | string
    source: null | string
    timezone: null | string
    ttl: null | number
    url: null | string
    x: {
        key: string;
        value: string;
    }[]
    diff --git a/develop/reference/interfaces/ICalCalendarProdIdData.html b/develop/reference/interfaces/ICalCalendarProdIdData.html index 6239bf5d..ef974df8 100644 --- a/develop/reference/interfaces/ICalCalendarProdIdData.html +++ b/develop/reference/interfaces/ICalCalendarProdIdData.html @@ -1,4 +1,4 @@ -ICalCalendarProdIdData | ical-generator - v8.0.1-develop.8

    Interface ICalCalendarProdIdData

    interface ICalCalendarProdIdData {
        company: string;
        language?: string;
        product: string;
    }

    Properties

    company +ICalCalendarProdIdData | ical-generator - v8.0.2-develop.1

    Interface ICalCalendarProdIdData

    interface ICalCalendarProdIdData {
        company: string;
        language?: string;
        product: string;
    }

    Properties

    company: string
    language?: string
    product: string
    +

    Properties

    company: string
    language?: string
    product: string
    diff --git a/develop/reference/interfaces/ICalCategoryData.html b/develop/reference/interfaces/ICalCategoryData.html index 84bbf2a8..ab07ea77 100644 --- a/develop/reference/interfaces/ICalCategoryData.html +++ b/develop/reference/interfaces/ICalCategoryData.html @@ -1,2 +1,2 @@ -ICalCategoryData | ical-generator - v8.0.1-develop.8

    Interface ICalCategoryData

    interface ICalCategoryData {
        name: string;
    }

    Properties

    Properties

    name: string
    +ICalCategoryData | ical-generator - v8.0.2-develop.1

    Interface ICalCategoryData

    interface ICalCategoryData {
        name: string;
    }

    Properties

    Properties

    name: string
    diff --git a/develop/reference/interfaces/ICalCategoryJSONData.html b/develop/reference/interfaces/ICalCategoryJSONData.html index c939de9b..fcf98341 100644 --- a/develop/reference/interfaces/ICalCategoryJSONData.html +++ b/develop/reference/interfaces/ICalCategoryJSONData.html @@ -1,2 +1,2 @@ -ICalCategoryJSONData | ical-generator - v8.0.1-develop.8

    Interface ICalCategoryJSONData

    interface ICalCategoryJSONData {
        name: string;
    }

    Properties

    Properties

    name: string
    +ICalCategoryJSONData | ical-generator - v8.0.2-develop.1

    Interface ICalCategoryJSONData

    interface ICalCategoryJSONData {
        name: string;
    }

    Properties

    Properties

    name: string
    diff --git a/develop/reference/interfaces/ICalDayJsStub.html b/develop/reference/interfaces/ICalDayJsStub.html index 7249fae2..86c6ed05 100644 --- a/develop/reference/interfaces/ICalDayJsStub.html +++ b/develop/reference/interfaces/ICalDayJsStub.html @@ -1,7 +1,7 @@ -ICalDayJsStub | ical-generator - v8.0.1-develop.8

    Interface ICalDayJsStub

    interface ICalDayJsStub {
        format(format?: string): string;
        isValid(): boolean;
        toDate(): Date;
        toJSON(): string;
        tz(zone?: string): ICalDayJsStub;
        utc(): ICalDayJsStub;
    }

    Methods

    format +ICalDayJsStub | ical-generator - v8.0.2-develop.1

    Interface ICalDayJsStub

    interface ICalDayJsStub {
        format(format?: string): string;
        isValid(): boolean;
        toDate(): Date;
        toJSON(): string;
        tz(zone?: string): ICalDayJsStub;
        utc(): ICalDayJsStub;
    }

    Methods

    • Parameters

      • Optionalformat: string

      Returns string

    • Returns boolean

    +

    Methods

    • Parameters

      • Optionalformat: string

      Returns string

    • Returns boolean

    diff --git a/develop/reference/interfaces/ICalDescription.html b/develop/reference/interfaces/ICalDescription.html index a8d133ac..f1c88be0 100644 --- a/develop/reference/interfaces/ICalDescription.html +++ b/develop/reference/interfaces/ICalDescription.html @@ -1,3 +1,3 @@ -ICalDescription | ical-generator - v8.0.1-develop.8

    Interface ICalDescription

    interface ICalDescription {
        html?: string;
        plain: string;
    }

    Properties

    html? +ICalDescription | ical-generator - v8.0.2-develop.1

    Interface ICalDescription

    interface ICalDescription {
        html?: string;
        plain: string;
    }

    Properties

    Properties

    html?: string
    plain: string
    +

    Properties

    html?: string
    plain: string
    diff --git a/develop/reference/interfaces/ICalEventData.html b/develop/reference/interfaces/ICalEventData.html index 30a028fc..6bde29d6 100644 --- a/develop/reference/interfaces/ICalEventData.html +++ b/develop/reference/interfaces/ICalEventData.html @@ -1,4 +1,4 @@ -ICalEventData | ical-generator - v8.0.1-develop.8

    Interface ICalEventData

    interface ICalEventData {
        alarms?: ICalAlarm[] | ICalAlarmData[];
        allDay?: boolean;
        attachments?: string[];
        attendees?: ICalAttendee[] | ICalAttendeeData[];
        busystatus?: null | ICalEventBusyStatus;
        categories?: ICalCategory[] | ICalCategoryData[];
        class?: null | ICalEventClass;
        created?: null | ICalDateTimeValue;
        description?: null | string | ICalDescription;
        end?: null | ICalDateTimeValue;
        floating?: boolean;
        id?: null | string | number;
        lastModified?: null | ICalDateTimeValue;
        location?: null | string | ICalLocation;
        organizer?: null | string | ICalOrganizer;
        priority?: null | number;
        recurrenceId?: null | ICalDateTimeValue;
        repeating?:
            | null
            | string
            | ICalRepeatingOptions
            | ICalRRuleStub;
        sequence?: number;
        stamp?: ICalDateTimeValue;
        start: ICalDateTimeValue;
        status?: null | ICalEventStatus;
        summary?: string;
        timezone?: null | string;
        transparency?: null | ICalEventTransparency;
        url?: null | string;
        x?: [string, string][] | Record<string, string> | {
            key: string;
            value: string;
        }[];
    }

    Properties

    alarms? +ICalEventData | ical-generator - v8.0.2-develop.1

    Interface ICalEventData

    interface ICalEventData {
        alarms?: ICalAlarm[] | ICalAlarmData[];
        allDay?: boolean;
        attachments?: string[];
        attendees?: ICalAttendee[] | ICalAttendeeData[];
        busystatus?: null | ICalEventBusyStatus;
        categories?: ICalCategory[] | ICalCategoryData[];
        class?: null | ICalEventClass;
        created?: null | ICalDateTimeValue;
        description?: null | string | ICalDescription;
        end?: null | ICalDateTimeValue;
        floating?: boolean;
        id?: null | string | number;
        lastModified?: null | ICalDateTimeValue;
        location?: null | string | ICalLocation;
        organizer?: null | string | ICalOrganizer;
        priority?: null | number;
        recurrenceId?: null | ICalDateTimeValue;
        repeating?:
            | null
            | string
            | ICalRepeatingOptions
            | ICalRRuleStub;
        sequence?: number;
        stamp?: ICalDateTimeValue;
        start: ICalDateTimeValue;
        status?: null | ICalEventStatus;
        summary?: string;
        timezone?: null | string;
        transparency?: null | ICalEventTransparency;
        url?: null | string;
        x?: [string, string][] | Record<string, string> | {
            key: string;
            value: string;
        }[];
    }

    Properties

    alarms?: ICalAlarm[] | ICalAlarmData[]
    allDay?: boolean
    attachments?: string[]
    attendees?: ICalAttendee[] | ICalAttendeeData[]
    busystatus?: null | ICalEventBusyStatus
    categories?: ICalCategory[] | ICalCategoryData[]
    class?: null | ICalEventClass
    created?: null | ICalDateTimeValue
    description?: null | string | ICalDescription
    end?: null | ICalDateTimeValue
    floating?: boolean
    id?: null | string | number
    lastModified?: null | ICalDateTimeValue
    location?: null | string | ICalLocation
    organizer?: null | string | ICalOrganizer
    priority?: null | number
    recurrenceId?: null | ICalDateTimeValue
    repeating?:
        | null
        | string
        | ICalRepeatingOptions
        | ICalRRuleStub
    sequence?: number
    status?: null | ICalEventStatus
    summary?: string
    timezone?: null | string
    transparency?: null | ICalEventTransparency
    url?: null | string
    x?: [string, string][] | Record<string, string> | {
        key: string;
        value: string;
    }[]
    +

    Properties

    alarms?: ICalAlarm[] | ICalAlarmData[]
    allDay?: boolean
    attachments?: string[]
    attendees?: ICalAttendee[] | ICalAttendeeData[]
    busystatus?: null | ICalEventBusyStatus
    categories?: ICalCategory[] | ICalCategoryData[]
    class?: null | ICalEventClass
    created?: null | ICalDateTimeValue
    description?: null | string | ICalDescription
    end?: null | ICalDateTimeValue
    floating?: boolean
    id?: null | string | number
    lastModified?: null | ICalDateTimeValue
    location?: null | string | ICalLocation
    organizer?: null | string | ICalOrganizer
    priority?: null | number
    recurrenceId?: null | ICalDateTimeValue
    repeating?:
        | null
        | string
        | ICalRepeatingOptions
        | ICalRRuleStub
    sequence?: number
    status?: null | ICalEventStatus
    summary?: string
    timezone?: null | string
    transparency?: null | ICalEventTransparency
    url?: null | string
    x?: [string, string][] | Record<string, string> | {
        key: string;
        value: string;
    }[]
    diff --git a/develop/reference/interfaces/ICalEventJSONData.html b/develop/reference/interfaces/ICalEventJSONData.html index fae71582..514b5305 100644 --- a/develop/reference/interfaces/ICalEventJSONData.html +++ b/develop/reference/interfaces/ICalEventJSONData.html @@ -1,4 +1,4 @@ -ICalEventJSONData | ical-generator - v8.0.1-develop.8

    Interface ICalEventJSONData

    interface ICalEventJSONData {
        alarms: ICalAlarm[];
        allDay: boolean;
        attachments: string[];
        attendees: ICalAttendee[];
        busystatus: null | ICalEventBusyStatus;
        categories: ICalCategory[];
        created: null | string;
        description: null | ICalDescription;
        end: null | string;
        floating: boolean;
        id: string;
        lastModified: null | string;
        location: null | ICalLocation;
        organizer: null | ICalOrganizer;
        priority?: null | number;
        recurrenceId: null | string;
        repeating: null | string | ICalEventJSONRepeatingData;
        sequence: number;
        stamp: string;
        start: string;
        status: null | ICalEventStatus;
        summary: string;
        timezone: null | string;
        transparency: null | ICalEventTransparency;
        url: null | string;
        x: {
            key: string;
            value: string;
        }[];
    }

    Properties

    alarms +ICalEventJSONData | ical-generator - v8.0.2-develop.1

    Interface ICalEventJSONData

    interface ICalEventJSONData {
        alarms: ICalAlarm[];
        allDay: boolean;
        attachments: string[];
        attendees: ICalAttendee[];
        busystatus: null | ICalEventBusyStatus;
        categories: ICalCategory[];
        created: null | string;
        description: null | ICalDescription;
        end: null | string;
        floating: boolean;
        id: string;
        lastModified: null | string;
        location: null | ICalLocation;
        organizer: null | ICalOrganizer;
        priority?: null | number;
        recurrenceId: null | string;
        repeating: null | string | ICalEventJSONRepeatingData;
        sequence: number;
        stamp: string;
        start: string;
        status: null | ICalEventStatus;
        summary: string;
        timezone: null | string;
        transparency: null | ICalEventTransparency;
        url: null | string;
        x: {
            key: string;
            value: string;
        }[];
    }

    Properties

    Properties

    alarms: ICalAlarm[]
    allDay: boolean
    attachments: string[]
    attendees: ICalAttendee[]
    busystatus: null | ICalEventBusyStatus
    categories: ICalCategory[]
    created: null | string
    description: null | ICalDescription
    end: null | string
    floating: boolean
    id: string
    lastModified: null | string
    location: null | ICalLocation
    organizer: null | ICalOrganizer
    priority?: null | number
    recurrenceId: null | string
    repeating: null | string | ICalEventJSONRepeatingData
    sequence: number
    stamp: string
    start: string
    status: null | ICalEventStatus
    summary: string
    timezone: null | string
    transparency: null | ICalEventTransparency
    url: null | string
    x: {
        key: string;
        value: string;
    }[]
    +

    Properties

    alarms: ICalAlarm[]
    allDay: boolean
    attachments: string[]
    attendees: ICalAttendee[]
    busystatus: null | ICalEventBusyStatus
    categories: ICalCategory[]
    created: null | string
    description: null | ICalDescription
    end: null | string
    floating: boolean
    id: string
    lastModified: null | string
    location: null | ICalLocation
    organizer: null | ICalOrganizer
    priority?: null | number
    recurrenceId: null | string
    repeating: null | string | ICalEventJSONRepeatingData
    sequence: number
    stamp: string
    start: string
    status: null | ICalEventStatus
    summary: string
    timezone: null | string
    transparency: null | ICalEventTransparency
    url: null | string
    x: {
        key: string;
        value: string;
    }[]
    diff --git a/develop/reference/interfaces/ICalEventJSONRepeatingData.html b/develop/reference/interfaces/ICalEventJSONRepeatingData.html index 32e156f1..965bbe96 100644 --- a/develop/reference/interfaces/ICalEventJSONRepeatingData.html +++ b/develop/reference/interfaces/ICalEventJSONRepeatingData.html @@ -1,4 +1,4 @@ -ICalEventJSONRepeatingData | ical-generator - v8.0.1-develop.8

    Interface ICalEventJSONRepeatingData

    interface ICalEventJSONRepeatingData {
        byDay?: ICalWeekday[];
        byMonth?: number[];
        byMonthDay?: number[];
        bySetPos?: number[];
        count?: number;
        exclude?: ICalDateTimeValue[];
        freq: ICalEventRepeatingFreq;
        interval?: number;
        startOfWeek?: ICalWeekday;
        until?: ICalDateTimeValue;
    }

    Properties

    byDay? +ICalEventJSONRepeatingData | ical-generator - v8.0.2-develop.1

    Interface ICalEventJSONRepeatingData

    interface ICalEventJSONRepeatingData {
        byDay?: ICalWeekday[];
        byMonth?: number[];
        byMonthDay?: number[];
        bySetPos?: number[];
        count?: number;
        exclude?: ICalDateTimeValue[];
        freq: ICalEventRepeatingFreq;
        interval?: number;
        startOfWeek?: ICalWeekday;
        until?: ICalDateTimeValue;
    }

    Properties

    byDay?: ICalWeekday[]
    byMonth?: number[]
    byMonthDay?: number[]
    bySetPos?: number[]
    count?: number
    exclude?: ICalDateTimeValue[]
    interval?: number
    startOfWeek?: ICalWeekday
    +

    Properties

    byDay?: ICalWeekday[]
    byMonth?: number[]
    byMonthDay?: number[]
    bySetPos?: number[]
    count?: number
    exclude?: ICalDateTimeValue[]
    interval?: number
    startOfWeek?: ICalWeekday
    diff --git a/develop/reference/interfaces/ICalGeo.html b/develop/reference/interfaces/ICalGeo.html index b9204beb..ab763868 100644 --- a/develop/reference/interfaces/ICalGeo.html +++ b/develop/reference/interfaces/ICalGeo.html @@ -1,3 +1,3 @@ -ICalGeo | ical-generator - v8.0.1-develop.8

    Interface ICalGeo

    interface ICalGeo {
        lat: number;
        lon: number;
    }

    Properties

    lat +ICalGeo | ical-generator - v8.0.2-develop.1

    Interface ICalGeo

    interface ICalGeo {
        lat: number;
        lon: number;
    }

    Properties

    Properties

    lat: number
    lon: number
    +

    Properties

    lat: number
    lon: number
    diff --git a/develop/reference/interfaces/ICalLocationWithTitle.html b/develop/reference/interfaces/ICalLocationWithTitle.html index d3fe5cfb..cff1d50b 100644 --- a/develop/reference/interfaces/ICalLocationWithTitle.html +++ b/develop/reference/interfaces/ICalLocationWithTitle.html @@ -1,5 +1,5 @@ -ICalLocationWithTitle | ical-generator - v8.0.1-develop.8

    Interface ICalLocationWithTitle

    interface ICalLocationWithTitle {
        address?: string;
        geo?: ICalGeo;
        radius?: number;
        title: string;
    }

    Properties

    address? +ICalLocationWithTitle | ical-generator - v8.0.2-develop.1

    Interface ICalLocationWithTitle

    interface ICalLocationWithTitle {
        address?: string;
        geo?: ICalGeo;
        radius?: number;
        title: string;
    }

    Properties

    address?: string
    geo?: ICalGeo
    radius?: number
    title: string
    +

    Properties

    address?: string
    geo?: ICalGeo
    radius?: number
    title: string
    diff --git a/develop/reference/interfaces/ICalLocationWithoutTitle.html b/develop/reference/interfaces/ICalLocationWithoutTitle.html index 8fc7d82f..bfa2dfad 100644 --- a/develop/reference/interfaces/ICalLocationWithoutTitle.html +++ b/develop/reference/interfaces/ICalLocationWithoutTitle.html @@ -1,2 +1,2 @@ -ICalLocationWithoutTitle | ical-generator - v8.0.1-develop.8

    Interface ICalLocationWithoutTitle

    interface ICalLocationWithoutTitle {
        geo: ICalGeo;
    }

    Properties

    geo -

    Properties

    geo: ICalGeo
    +ICalLocationWithoutTitle | ical-generator - v8.0.2-develop.1

    Interface ICalLocationWithoutTitle

    interface ICalLocationWithoutTitle {
        geo: ICalGeo;
    }

    Properties

    geo +

    Properties

    geo: ICalGeo
    diff --git a/develop/reference/interfaces/ICalLuxonDateTimeStub.html b/develop/reference/interfaces/ICalLuxonDateTimeStub.html index da4a6335..aacfdbcc 100644 --- a/develop/reference/interfaces/ICalLuxonDateTimeStub.html +++ b/develop/reference/interfaces/ICalLuxonDateTimeStub.html @@ -1,7 +1,7 @@ -ICalLuxonDateTimeStub | ical-generator - v8.0.1-develop.8

    Interface ICalLuxonDateTimeStub

    interface ICalLuxonDateTimeStub {
        zone: {
            type: string;
        };
        get isValid(): boolean;
        setZone(zone?: string): ICalLuxonDateTimeStub;
        toFormat(fmt: string): string;
        toJSDate(): Date;
        toJSON(): null | string;
    }

    Properties

    zone +ICalLuxonDateTimeStub | ical-generator - v8.0.2-develop.1

    Interface ICalLuxonDateTimeStub

    interface ICalLuxonDateTimeStub {
        zone: {
            type: string;
        };
        get isValid(): boolean;
        setZone(zone?: string): ICalLuxonDateTimeStub;
        toFormat(fmt: string): string;
        toJSDate(): Date;
        toJSON(): null | string;
    }

    Properties

    Accessors

    Methods

    Properties

    zone: {
        type: string;
    }

    Accessors

    • get isValid(): boolean
    • Returns boolean

    Methods

    • Parameters

      • fmt: string

      Returns string

    • Returns null | string

    +

    Properties

    zone: {
        type: string;
    }

    Accessors

    • get isValid(): boolean
    • Returns boolean

    Methods

    • Parameters

      • fmt: string

      Returns string

    • Returns null | string

    diff --git a/develop/reference/interfaces/ICalMomentDurationStub.html b/develop/reference/interfaces/ICalMomentDurationStub.html index f0baa951..2a793515 100644 --- a/develop/reference/interfaces/ICalMomentDurationStub.html +++ b/develop/reference/interfaces/ICalMomentDurationStub.html @@ -1,2 +1,2 @@ -ICalMomentDurationStub | ical-generator - v8.0.1-develop.8

    Interface ICalMomentDurationStub

    interface ICalMomentDurationStub {
        asSeconds(): number;
    }

    Methods

    Methods

    • Returns number

    +ICalMomentDurationStub | ical-generator - v8.0.2-develop.1

    Interface ICalMomentDurationStub

    interface ICalMomentDurationStub {
        asSeconds(): number;
    }

    Methods

    Methods

    • Returns number

    diff --git a/develop/reference/interfaces/ICalMomentStub.html b/develop/reference/interfaces/ICalMomentStub.html index b54bd902..bdd5ae57 100644 --- a/develop/reference/interfaces/ICalMomentStub.html +++ b/develop/reference/interfaces/ICalMomentStub.html @@ -1,7 +1,7 @@ -ICalMomentStub | ical-generator - v8.0.1-develop.8

    Interface ICalMomentStub

    interface ICalMomentStub {
        clone(): ICalMomentStub;
        format(format?: string): string;
        isValid(): boolean;
        toDate(): Date;
        toJSON(): string;
        utc(): ICalMomentStub;
    }

    Hierarchy (view full)

    Methods

    clone +ICalMomentStub | ical-generator - v8.0.2-develop.1

    Interface ICalMomentStub

    interface ICalMomentStub {
        clone(): ICalMomentStub;
        format(format?: string): string;
        isValid(): boolean;
        toDate(): Date;
        toJSON(): string;
        utc(): ICalMomentStub;
    }

    Hierarchy (view full)

    Methods

    • Parameters

      • Optionalformat: string

      Returns string

    • Returns boolean

    +

    Methods

    • Parameters

      • Optionalformat: string

      Returns string

    • Returns boolean

    diff --git a/develop/reference/interfaces/ICalMomentTimezoneStub.html b/develop/reference/interfaces/ICalMomentTimezoneStub.html index 6bdc0001..7157a709 100644 --- a/develop/reference/interfaces/ICalMomentTimezoneStub.html +++ b/develop/reference/interfaces/ICalMomentTimezoneStub.html @@ -1,8 +1,8 @@ -ICalMomentTimezoneStub | ical-generator - v8.0.1-develop.8

    Interface ICalMomentTimezoneStub

    interface ICalMomentTimezoneStub {
        clone(): ICalMomentTimezoneStub;
        format(format?: string): string;
        isValid(): boolean;
        toDate(): Date;
        toJSON(): string;
        tz(): undefined | string;
        tz(timezone: string): ICalMomentTimezoneStub;
        utc(): ICalMomentTimezoneStub;
    }

    Hierarchy (view full)

    Methods

    clone +ICalMomentTimezoneStub | ical-generator - v8.0.2-develop.1

    Interface ICalMomentTimezoneStub

    interface ICalMomentTimezoneStub {
        clone(): ICalMomentTimezoneStub;
        format(format?: string): string;
        isValid(): boolean;
        toDate(): Date;
        toJSON(): string;
        tz(): undefined | string;
        tz(timezone: string): ICalMomentTimezoneStub;
        utc(): ICalMomentTimezoneStub;
    }

    Hierarchy (view full)

    Methods

    +

    Methods

    diff --git a/develop/reference/interfaces/ICalOrganizer.html b/develop/reference/interfaces/ICalOrganizer.html index 36f69dd9..ef1047a7 100644 --- a/develop/reference/interfaces/ICalOrganizer.html +++ b/develop/reference/interfaces/ICalOrganizer.html @@ -1,5 +1,5 @@ -ICalOrganizer | ical-generator - v8.0.1-develop.8

    Interface ICalOrganizer

    interface ICalOrganizer {
        email?: string;
        mailto?: string;
        name: string;
        sentBy?: string;
    }

    Properties

    email? +ICalOrganizer | ical-generator - v8.0.2-develop.1

    Interface ICalOrganizer

    interface ICalOrganizer {
        email?: string;
        mailto?: string;
        name: string;
        sentBy?: string;
    }

    Properties

    email?: string
    mailto?: string
    name: string
    sentBy?: string
    +

    Properties

    email?: string
    mailto?: string
    name: string
    sentBy?: string
    diff --git a/develop/reference/interfaces/ICalRRuleStub.html b/develop/reference/interfaces/ICalRRuleStub.html index a40cc039..0858f394 100644 --- a/develop/reference/interfaces/ICalRRuleStub.html +++ b/develop/reference/interfaces/ICalRRuleStub.html @@ -1,3 +1,3 @@ -ICalRRuleStub | ical-generator - v8.0.1-develop.8

    Interface ICalRRuleStub

    interface ICalRRuleStub {
        between(after: Date, before: Date, inc?: boolean, iterator?: ((d: Date, len: number) => boolean)): Date[];
        toString(): string;
    }

    Methods

    between +ICalRRuleStub | ical-generator - v8.0.2-develop.1

    Interface ICalRRuleStub

    interface ICalRRuleStub {
        between(after: Date, before: Date, inc?: boolean, iterator?: ((d: Date, len: number) => boolean)): Date[];
        toString(): string;
    }

    Methods

    Methods

    • Parameters

      • after: Date
      • before: Date
      • Optionalinc: boolean
      • Optionaliterator: ((d: Date, len: number) => boolean)
          • (d, len): boolean
          • Parameters

            • d: Date
            • len: number

            Returns boolean

      Returns Date[]

    +

    Methods

    • Parameters

      • after: Date
      • before: Date
      • Optionalinc: boolean
      • Optionaliterator: ((d: Date, len: number) => boolean)
          • (d, len): boolean
          • Parameters

            • d: Date
            • len: number

            Returns boolean

      Returns Date[]

    diff --git a/develop/reference/interfaces/ICalRepeatingOptions.html b/develop/reference/interfaces/ICalRepeatingOptions.html index 3fa922b4..dcad20dc 100644 --- a/develop/reference/interfaces/ICalRepeatingOptions.html +++ b/develop/reference/interfaces/ICalRepeatingOptions.html @@ -1,4 +1,4 @@ -ICalRepeatingOptions | ical-generator - v8.0.1-develop.8

    Interface ICalRepeatingOptions

    interface ICalRepeatingOptions {
        byDay?: ICalWeekday | ICalWeekday[];
        byMonth?: number | number[];
        byMonthDay?: number | number[];
        bySetPos?: number | number[];
        count?: number;
        exclude?: ICalDateTimeValue | ICalDateTimeValue[];
        freq: ICalEventRepeatingFreq;
        interval?: number;
        startOfWeek?: ICalWeekday;
        until?: ICalDateTimeValue;
    }

    Properties

    byDay? +ICalRepeatingOptions | ical-generator - v8.0.2-develop.1

    Interface ICalRepeatingOptions

    interface ICalRepeatingOptions {
        byDay?: ICalWeekday | ICalWeekday[];
        byMonth?: number | number[];
        byMonthDay?: number | number[];
        bySetPos?: number | number[];
        count?: number;
        exclude?: ICalDateTimeValue | ICalDateTimeValue[];
        freq: ICalEventRepeatingFreq;
        interval?: number;
        startOfWeek?: ICalWeekday;
        until?: ICalDateTimeValue;
    }

    Properties

    byMonth?: number | number[]
    byMonthDay?: number | number[]
    bySetPos?: number | number[]
    count?: number
    interval?: number
    startOfWeek?: ICalWeekday
    +

    Properties

    byMonth?: number | number[]
    byMonthDay?: number | number[]
    bySetPos?: number | number[]
    count?: number
    interval?: number
    startOfWeek?: ICalWeekday
    diff --git a/develop/reference/interfaces/ICalTimezone.html b/develop/reference/interfaces/ICalTimezone.html index 3b290d6a..c11f48a2 100644 --- a/develop/reference/interfaces/ICalTimezone.html +++ b/develop/reference/interfaces/ICalTimezone.html @@ -1,3 +1,3 @@ -ICalTimezone | ical-generator - v8.0.1-develop.8

    Interface ICalTimezone

    interface ICalTimezone {
        generator?: ((timezone: string) => null | string);
        name: null | string;
    }

    Properties

    generator? +ICalTimezone | ical-generator - v8.0.2-develop.1

    Interface ICalTimezone

    interface ICalTimezone {
        generator?: ((timezone: string) => null | string);
        name: null | string;
    }

    Properties

    Properties

    generator?: ((timezone: string) => null | string)
    name: null | string
    +

    Properties

    generator?: ((timezone: string) => null | string)
    name: null | string
    diff --git a/develop/reference/modules.html b/develop/reference/modules.html index 9b81c922..74e3b251 100644 --- a/develop/reference/modules.html +++ b/develop/reference/modules.html @@ -1,4 +1,4 @@ -ical-generator - v8.0.1-develop.8

    ical-generator - v8.0.1-develop.8

    Index

    Enumerations

    ICalAlarmType +ical-generator - v8.0.2-develop.1

    ical-generator - v8.0.2-develop.1

    Index

    Enumerations

    +
    diff --git a/develop/reference/types/ICalAlarmData.html b/develop/reference/types/ICalAlarmData.html index ad40c20a..145a6d9b 100644 --- a/develop/reference/types/ICalAlarmData.html +++ b/develop/reference/types/ICalAlarmData.html @@ -1 +1 @@ -ICalAlarmData | ical-generator - v8.0.1-develop.8

    Type Alias ICalAlarmData

    +ICalAlarmData | ical-generator - v8.0.2-develop.1

    Type Alias ICalAlarmData

    diff --git a/develop/reference/types/ICalAlarmRelatesTo.html b/develop/reference/types/ICalAlarmRelatesTo.html index 3e404a35..b5993f19 100644 --- a/develop/reference/types/ICalAlarmRelatesTo.html +++ b/develop/reference/types/ICalAlarmRelatesTo.html @@ -1 +1 @@ -ICalAlarmRelatesTo | ical-generator - v8.0.1-develop.8

    Type Alias ICalAlarmRelatesTo

    ICalAlarmRelatesTo: typeof ICalAlarmRelatesTo[keyof typeof ICalAlarmRelatesTo]
    +ICalAlarmRelatesTo | ical-generator - v8.0.2-develop.1

    Type Alias ICalAlarmRelatesTo

    ICalAlarmRelatesTo: typeof ICalAlarmRelatesTo[keyof typeof ICalAlarmRelatesTo]
    diff --git a/develop/reference/types/ICalAlarmTriggerAfterData.html b/develop/reference/types/ICalAlarmTriggerAfterData.html index 9265b5c6..6b9fbfa6 100644 --- a/develop/reference/types/ICalAlarmTriggerAfterData.html +++ b/develop/reference/types/ICalAlarmTriggerAfterData.html @@ -1 +1 @@ -ICalAlarmTriggerAfterData | ical-generator - v8.0.1-develop.8

    Type Alias ICalAlarmTriggerAfterData

    ICalAlarmTriggerAfterData: ICalAlarmBaseData & {
        triggerAfter: number | ICalDateTimeValue;
    }
    +ICalAlarmTriggerAfterData | ical-generator - v8.0.2-develop.1

    Type Alias ICalAlarmTriggerAfterData

    ICalAlarmTriggerAfterData: ICalAlarmBaseData & {
        triggerAfter: number | ICalDateTimeValue;
    }
    diff --git a/develop/reference/types/ICalAlarmTriggerBeforeData.html b/develop/reference/types/ICalAlarmTriggerBeforeData.html index 55155e9e..7bf3fb55 100644 --- a/develop/reference/types/ICalAlarmTriggerBeforeData.html +++ b/develop/reference/types/ICalAlarmTriggerBeforeData.html @@ -1 +1 @@ -ICalAlarmTriggerBeforeData | ical-generator - v8.0.1-develop.8

    Type Alias ICalAlarmTriggerBeforeData

    ICalAlarmTriggerBeforeData: ICalAlarmBaseData & {
        triggerBefore: number | ICalDateTimeValue;
    }
    +ICalAlarmTriggerBeforeData | ical-generator - v8.0.2-develop.1

    Type Alias ICalAlarmTriggerBeforeData

    ICalAlarmTriggerBeforeData: ICalAlarmBaseData & {
        triggerBefore: number | ICalDateTimeValue;
    }
    diff --git a/develop/reference/types/ICalAlarmTriggerData.html b/develop/reference/types/ICalAlarmTriggerData.html index 2ddd9b39..69079f3a 100644 --- a/develop/reference/types/ICalAlarmTriggerData.html +++ b/develop/reference/types/ICalAlarmTriggerData.html @@ -1 +1 @@ -ICalAlarmTriggerData | ical-generator - v8.0.1-develop.8

    Type Alias ICalAlarmTriggerData

    ICalAlarmTriggerData: ICalAlarmBaseData & {
        trigger: number | ICalDateTimeValue;
    }
    +ICalAlarmTriggerData | ical-generator - v8.0.2-develop.1

    Type Alias ICalAlarmTriggerData

    ICalAlarmTriggerData: ICalAlarmBaseData & {
        trigger: number | ICalDateTimeValue;
    }
    diff --git a/develop/reference/types/ICalAlarmTypeValue.html b/develop/reference/types/ICalAlarmTypeValue.html index 6015d451..dea9be56 100644 --- a/develop/reference/types/ICalAlarmTypeValue.html +++ b/develop/reference/types/ICalAlarmTypeValue.html @@ -1 +1 @@ -ICalAlarmTypeValue | ical-generator - v8.0.1-develop.8

    Type Alias ICalAlarmTypeValue

    ICalAlarmTypeValue: keyof ICalAlarmType
    +ICalAlarmTypeValue | ical-generator - v8.0.2-develop.1

    Type Alias ICalAlarmTypeValue

    ICalAlarmTypeValue: keyof ICalAlarmType
    diff --git a/develop/reference/types/ICalDateTimeValue.html b/develop/reference/types/ICalDateTimeValue.html index 23e8f884..8fdf8d3f 100644 --- a/develop/reference/types/ICalDateTimeValue.html +++ b/develop/reference/types/ICalDateTimeValue.html @@ -1,5 +1,5 @@ -ICalDateTimeValue | ical-generator - v8.0.1-develop.8

    Type Alias ICalDateTimeValue

    ICalDateTimeValue:
        | Date
        | ICalMomentStub
        | ICalMomentTimezoneStub
        | ICalLuxonDateTimeStub
        | ICalDayJsStub
        | string

    ical-generator supports native Date, +ICalDateTimeValue | ical-generator - v8.0.2-develop.1

    Type Alias ICalDateTimeValue

    ICalDateTimeValue:
        | Date
        | ICalMomentStub
        | ICalMomentTimezoneStub
        | ICalLuxonDateTimeStub
        | ICalDayJsStub
        | string

    ical-generator supports native Date, moment.js (and moment-timezone, Day.js and Luxon's DateTime objects. You can also pass a string which is then passed to javascript's Date internally.

    -
    +
    diff --git a/develop/reference/types/ICalLocation.html b/develop/reference/types/ICalLocation.html index fab0d909..c9ba0331 100644 --- a/develop/reference/types/ICalLocation.html +++ b/develop/reference/types/ICalLocation.html @@ -1 +1 @@ -ICalLocation | ical-generator - v8.0.1-develop.8
    +ICalLocation | ical-generator - v8.0.2-develop.1
    diff --git a/develop/reference/variables/ICalAlarmRelatesTo-1.html b/develop/reference/variables/ICalAlarmRelatesTo-1.html index 6e826d80..ad90be2c 100644 --- a/develop/reference/variables/ICalAlarmRelatesTo-1.html +++ b/develop/reference/variables/ICalAlarmRelatesTo-1.html @@ -1 +1 @@ -ICalAlarmRelatesTo | ical-generator - v8.0.1-develop.8

    Variable ICalAlarmRelatesToConst

    ICalAlarmRelatesTo: {
        end: "END";
        start: "START";
    } = ...
    +ICalAlarmRelatesTo | ical-generator - v8.0.2-develop.1

    Variable ICalAlarmRelatesToConst

    ICalAlarmRelatesTo: {
        end: "END";
        start: "START";
    } = ...
    diff --git a/develop/tests/index.html b/develop/tests/index.html index bf9ef7d2..3dc69bc9 100644 --- a/develop/tests/index.html +++ b/develop/tests/index.html @@ -1,2 +1,2 @@ -Mochawesome Report
    \ No newline at end of file +Mochawesome Report
    \ No newline at end of file diff --git a/develop/tests/mochawesome.json b/develop/tests/mochawesome.json index 59cdb87c..cf6b67ff 100644 --- a/develop/tests/mochawesome.json +++ b/develop/tests/mochawesome.json @@ -5,9 +5,9 @@ "passes": 445, "pending": 2, "failures": 0, - "start": "2024-10-15T11:01:57.186Z", - "end": "2024-10-15T11:01:57.346Z", - "duration": 160, + "start": "2024-10-22T09:01:19.201Z", + "end": "2024-10-22T09:01:19.368Z", + "duration": 167, "testsRegistered": 447, "passPercent": 100, "pendingPercent": 0.44742729306487694, @@ -18,7 +18,7 @@ }, "results": [ { - "uuid": "16cfd483-d634-4adc-ac8c-110a298c67dc", + "uuid": "ab263591-c9ae-461a-a51d-20be52957d3b", "title": "", "fullFile": "", "file": "", @@ -27,7 +27,7 @@ "tests": [], "suites": [ { - "uuid": "8acad9bb-bee8-458f-8259-152eaea551bf", + "uuid": "1bc8061e-d895-4878-b405-ba70e91fe7af", "title": "ical-generator Alarm", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -36,7 +36,7 @@ "tests": [], "suites": [ { - "uuid": "b4d96465-abba-4e80-8320-d73149baf421", + "uuid": "d6f7e5c2-344f-4103-a2ff-a641f12de0cf", "title": "constructor()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -47,7 +47,7 @@ "title": "shouldn't work without event reference", "fullTitle": "ical-generator Alarm constructor() shouldn't work without event reference", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -56,8 +56,8 @@ "context": null, "code": "assert.throws(function(){new ICalAlarm({type:ICalAlarmType.display},null)},/`event`/)", "err": {}, - "uuid": "83293ff7-169c-4fab-ba0f-b012a9775e4c", - "parentUUID": "b4d96465-abba-4e80-8320-d73149baf421", + "uuid": "ad4b98be-a730-4d85-8e6b-01d9943c6917", + "parentUUID": "d6f7e5c2-344f-4103-a2ff-a641f12de0cf", "isHook": false, "skipped": false }, @@ -74,27 +74,27 @@ "context": null, "code": "const a=new ICalAlarm({unknown:true,type:ICalAlarmType.display},new ICalEvent({start:new Date},new ICalCalendar));assert.strictEqual(a.type(),\"display\")", "err": {}, - "uuid": "dae5a286-d826-436a-af28-784ebde45f8d", - "parentUUID": "b4d96465-abba-4e80-8320-d73149baf421", + "uuid": "2d803f45-dcc4-4e06-bbc2-a110e0508d97", + "parentUUID": "d6f7e5c2-344f-4103-a2ff-a641f12de0cf", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "83293ff7-169c-4fab-ba0f-b012a9775e4c", - "dae5a286-d826-436a-af28-784ebde45f8d" + "ad4b98be-a730-4d85-8e6b-01d9943c6917", + "2d803f45-dcc4-4e06-bbc2-a110e0508d97" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 2, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "ebbe9bc7-8fed-4772-8214-59c39b5fb490", + "uuid": "2b927231-d76b-4b46-bb3b-6f705e5f4c70", "title": "type()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -114,8 +114,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.type(ICalAlarmType.display))", "err": {}, - "uuid": "af39bedd-5742-473c-91f0-c57295a2593e", - "parentUUID": "ebbe9bc7-8fed-4772-8214-59c39b5fb490", + "uuid": "36f824c7-49d4-4090-9360-c1791df6b22c", + "parentUUID": "2b927231-d76b-4b46-bb3b-6f705e5f4c70", "isHook": false, "skipped": false }, @@ -132,8 +132,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.strictEqual(a.type(),\"display\");a.type(ICalAlarmType.audio);assert.strictEqual(a.type(),\"audio\")", "err": {}, - "uuid": "9baefca3-f3a8-4b1f-9f7c-ff1f1887ab3e", - "parentUUID": "ebbe9bc7-8fed-4772-8214-59c39b5fb490", + "uuid": "6d07565e-3f64-4386-9760-c49748adc728", + "parentUUID": "2b927231-d76b-4b46-bb3b-6f705e5f4c70", "isHook": false, "skipped": false }, @@ -150,8 +150,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.throws(function(){a.type(\"BANANA\")},/`type`/);assert.throws(function(){a.type(null)},/`type`/)", "err": {}, - "uuid": "81372db5-c9c0-4014-8e4e-236728232adf", - "parentUUID": "ebbe9bc7-8fed-4772-8214-59c39b5fb490", + "uuid": "834c42a5-6a48-4226-abf8-06349c1ed916", + "parentUUID": "2b927231-d76b-4b46-bb3b-6f705e5f4c70", "isHook": false, "skipped": false }, @@ -159,7 +159,7 @@ "title": "should change something", "fullTitle": "ical-generator Alarm type() should change something", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -168,29 +168,29 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"ACTION:DISPLAY\")>-1)", "err": {}, - "uuid": "6879398b-5f54-4f96-a549-2e27f368c108", - "parentUUID": "ebbe9bc7-8fed-4772-8214-59c39b5fb490", + "uuid": "dd9b13d2-4f95-4ca1-8a9c-5d3ee2d49385", + "parentUUID": "2b927231-d76b-4b46-bb3b-6f705e5f4c70", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "af39bedd-5742-473c-91f0-c57295a2593e", - "9baefca3-f3a8-4b1f-9f7c-ff1f1887ab3e", - "81372db5-c9c0-4014-8e4e-236728232adf", - "6879398b-5f54-4f96-a549-2e27f368c108" + "36f824c7-49d4-4090-9360-c1791df6b22c", + "6d07565e-3f64-4386-9760-c49748adc728", + "834c42a5-6a48-4226-abf8-06349c1ed916", + "dd9b13d2-4f95-4ca1-8a9c-5d3ee2d49385" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "675b01bb-7a84-46c4-900a-c73a0d74c714", + "uuid": "75950571-6ce5-4eaa-b6cc-585c9650e8f0", "title": "trigger()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -210,8 +210,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.trigger(60*10))", "err": {}, - "uuid": "a2793394-8eab-4788-bdf9-d35b13fc52bd", - "parentUUID": "675b01bb-7a84-46c4-900a-c73a0d74c714", + "uuid": "d6ffabb9-e253-41db-ad63-5a94245a1206", + "parentUUID": "75950571-6ce5-4eaa-b6cc-585c9650e8f0", "isHook": false, "skipped": false }, @@ -219,7 +219,7 @@ "title": "getter should return value", "fullTitle": "ical-generator Alarm trigger() getter should return value", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -228,8 +228,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));const now=new Date;assert.strictEqual(a.trigger(),600);assert.strictEqual(a.triggerAfter(),-600);a.trigger(300);assert.strictEqual(a.trigger(),300);assert.strictEqual(a.triggerAfter(),-300);a.trigger(now);const dateResult=a.trigger();assert.deepStrictEqual(dateResult,now)", "err": {}, - "uuid": "4f3692d3-4a6a-438e-bf9b-adc2af5e027c", - "parentUUID": "675b01bb-7a84-46c4-900a-c73a0d74c714", + "uuid": "50af89f8-f203-4fdf-8af8-562d21b1f16d", + "parentUUID": "75950571-6ce5-4eaa-b6cc-585c9650e8f0", "isHook": false, "skipped": false }, @@ -237,7 +237,7 @@ "title": "should throw error when trigger not allowed", "fullTitle": "ical-generator Alarm trigger() should throw error when trigger not allowed", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -246,8 +246,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.throws(function(){a.trigger(Infinity)},/`trigger`/);assert.throws(function(){a.trigger(\"hi\")},/`trigger`/);assert.throws(function(){a.trigger(true)},/`trigger`/)", "err": {}, - "uuid": "0212357b-ea4b-42a5-817f-46a8317a0d6e", - "parentUUID": "675b01bb-7a84-46c4-900a-c73a0d74c714", + "uuid": "3aec97bd-6da1-4d50-8113-53a48c5d7c31", + "parentUUID": "75950571-6ce5-4eaa-b6cc-585c9650e8f0", "isHook": false, "skipped": false }, @@ -264,8 +264,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));a.trigger(new Date);assert.ok(a.trigger()instanceof Date)", "err": {}, - "uuid": "6eecaf13-5088-423a-830f-fe9fc49ecb10", - "parentUUID": "675b01bb-7a84-46c4-900a-c73a0d74c714", + "uuid": "3ecf8d62-c90c-4409-9a44-50d2c7373a7a", + "parentUUID": "75950571-6ce5-4eaa-b6cc-585c9650e8f0", "isHook": false, "skipped": false }, @@ -273,7 +273,7 @@ "title": "setter should work with moment instance", "fullTitle": "ical-generator Alarm trigger() setter should work with moment instance", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -282,8 +282,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));a.trigger(moment());assert.ok(moment.isMoment(a.trigger()))", "err": {}, - "uuid": "c205db3a-483c-4cbf-8ffe-0bfc9ba09104", - "parentUUID": "675b01bb-7a84-46c4-900a-c73a0d74c714", + "uuid": "2027559e-7c46-443c-a398-982af18993e5", + "parentUUID": "75950571-6ce5-4eaa-b6cc-585c9650e8f0", "isHook": false, "skipped": false }, @@ -300,8 +300,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));a.trigger(2*60);assert.strictEqual(a.trigger(),120)", "err": {}, - "uuid": "130ff96b-a6b4-4932-9c62-bb2d86ec3fcd", - "parentUUID": "675b01bb-7a84-46c4-900a-c73a0d74c714", + "uuid": "2e297373-1af0-4334-b60f-c201526763cb", + "parentUUID": "75950571-6ce5-4eaa-b6cc-585c9650e8f0", "isHook": false, "skipped": false }, @@ -318,32 +318,32 @@ "context": null, "code": "const trigger=moment(\"2015-02-01T13:38:45.000Z\");const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().includes(\"TRIGGER:-PT10M\"));a.trigger(trigger);assert.ok(a.toString().includes(\"TRIGGER;VALUE=DATE-TIME:20150201T133845Z\"))", "err": {}, - "uuid": "a3816437-964d-4790-abc0-e516ae6dd76b", - "parentUUID": "675b01bb-7a84-46c4-900a-c73a0d74c714", + "uuid": "85d41b63-1998-4024-b332-17df1569a8bb", + "parentUUID": "75950571-6ce5-4eaa-b6cc-585c9650e8f0", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "a2793394-8eab-4788-bdf9-d35b13fc52bd", - "4f3692d3-4a6a-438e-bf9b-adc2af5e027c", - "0212357b-ea4b-42a5-817f-46a8317a0d6e", - "6eecaf13-5088-423a-830f-fe9fc49ecb10", - "c205db3a-483c-4cbf-8ffe-0bfc9ba09104", - "130ff96b-a6b4-4932-9c62-bb2d86ec3fcd", - "a3816437-964d-4790-abc0-e516ae6dd76b" + "d6ffabb9-e253-41db-ad63-5a94245a1206", + "50af89f8-f203-4fdf-8af8-562d21b1f16d", + "3aec97bd-6da1-4d50-8113-53a48c5d7c31", + "3ecf8d62-c90c-4409-9a44-50d2c7373a7a", + "2027559e-7c46-443c-a398-982af18993e5", + "2e297373-1af0-4334-b60f-c201526763cb", + "85d41b63-1998-4024-b332-17df1569a8bb" ], "failures": [], "pending": [], "skipped": [], - "duration": 3, + "duration": 4, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "24f0bfe7-dd92-43fc-baa7-abca9143754c", + "uuid": "918f57c2-8363-4885-b5ae-1bbdb78e5f34", "title": "triggerAfter()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -363,8 +363,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.triggerAfter(60*10))", "err": {}, - "uuid": "29052eb4-7989-4879-9bd2-b9309a05c61f", - "parentUUID": "24f0bfe7-dd92-43fc-baa7-abca9143754c", + "uuid": "c38e7e17-0db7-4149-a005-4146ab40dba8", + "parentUUID": "918f57c2-8363-4885-b5ae-1bbdb78e5f34", "isHook": false, "skipped": false }, @@ -381,8 +381,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar)).triggerAfter(300);assert.strictEqual(a.triggerAfter(),300);assert.strictEqual(a.trigger(),-300)", "err": {}, - "uuid": "d435b27d-ecfd-4137-b081-1181ad3faab4", - "parentUUID": "24f0bfe7-dd92-43fc-baa7-abca9143754c", + "uuid": "d6e6bafd-754c-4ba9-b8df-17c45dafd093", + "parentUUID": "918f57c2-8363-4885-b5ae-1bbdb78e5f34", "isHook": false, "skipped": false }, @@ -399,8 +399,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));a.triggerAfter(120);assert.strictEqual(a.trigger(),-120)", "err": {}, - "uuid": "8690a735-5ea7-4c9d-872b-7f688d931f51", - "parentUUID": "24f0bfe7-dd92-43fc-baa7-abca9143754c", + "uuid": "eaf97ca4-d535-4545-af32-75030ad286c1", + "parentUUID": "918f57c2-8363-4885-b5ae-1bbdb78e5f34", "isHook": false, "skipped": false }, @@ -417,8 +417,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.throws(function(){a.triggerAfter(Infinity)},/`trigger`/);assert.throws(function(){a.triggerAfter(\"hi\")},/`trigger`/);assert.throws(function(){a.triggerAfter(true)},/`trigger`/)", "err": {}, - "uuid": "193cfcab-e03d-40e3-ae77-31e398d59ae2", - "parentUUID": "24f0bfe7-dd92-43fc-baa7-abca9143754c", + "uuid": "54c197b4-4b4a-48b0-b96a-6799ee07b219", + "parentUUID": "918f57c2-8363-4885-b5ae-1bbdb78e5f34", "isHook": false, "skipped": false }, @@ -435,19 +435,19 @@ "context": null, "code": "const trigger=moment(\"20150201T133845Z\");const a=new ICalAlarm({triggerAfter:600},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"TRIGGER;RELATED=END:PT10M\")>-1);a.triggerAfter(trigger);assert.ok(a.toString().indexOf(\"TRIGGER;VALUE=DATE-TIME:20150201T133845Z\")>-1)", "err": {}, - "uuid": "bf036347-1fa3-47e0-8515-a93e88a2160b", - "parentUUID": "24f0bfe7-dd92-43fc-baa7-abca9143754c", + "uuid": "0068def6-8ebf-45bf-acea-eeaa518e280d", + "parentUUID": "918f57c2-8363-4885-b5ae-1bbdb78e5f34", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "29052eb4-7989-4879-9bd2-b9309a05c61f", - "d435b27d-ecfd-4137-b081-1181ad3faab4", - "8690a735-5ea7-4c9d-872b-7f688d931f51", - "193cfcab-e03d-40e3-ae77-31e398d59ae2", - "bf036347-1fa3-47e0-8515-a93e88a2160b" + "c38e7e17-0db7-4149-a005-4146ab40dba8", + "d6e6bafd-754c-4ba9-b8df-17c45dafd093", + "eaf97ca4-d535-4545-af32-75030ad286c1", + "54c197b4-4b4a-48b0-b96a-6799ee07b219", + "0068def6-8ebf-45bf-acea-eeaa518e280d" ], "failures": [], "pending": [], @@ -458,7 +458,7 @@ "_timeout": 2000 }, { - "uuid": "542bb227-d364-42ec-ba54-df501b070ef0", + "uuid": "37db051d-e8f1-4351-8718-ff01039f37fc", "title": "triggerBefore()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -469,7 +469,7 @@ "title": "setter should return this", "fullTitle": "ical-generator Alarm triggerBefore() setter should return this", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -478,8 +478,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.triggerBefore(60*10))", "err": {}, - "uuid": "d912075e-825f-40bf-9c9f-d26feb567da3", - "parentUUID": "542bb227-d364-42ec-ba54-df501b070ef0", + "uuid": "f62c1888-2d92-4608-b636-a4a0fdb82d25", + "parentUUID": "37db051d-e8f1-4351-8718-ff01039f37fc", "isHook": false, "skipped": false }, @@ -496,8 +496,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));const now=new Date;assert.strictEqual(a.triggerBefore(),600);a.trigger(300);assert.strictEqual(a.triggerBefore(),300);a.trigger(now);const dateResult=a.triggerBefore();assert.deepStrictEqual(dateResult,now)", "err": {}, - "uuid": "a7b7a15c-8b63-409c-8997-2bffa1439659", - "parentUUID": "542bb227-d364-42ec-ba54-df501b070ef0", + "uuid": "a83bd1dc-7aa5-44b3-841d-3b366a33cb61", + "parentUUID": "37db051d-e8f1-4351-8718-ff01039f37fc", "isHook": false, "skipped": false }, @@ -514,8 +514,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.throws(function(){a.triggerBefore(Infinity)},/`trigger`/);assert.throws(function(){a.triggerBefore(\"hi\")},/`trigger`/);assert.throws(function(){a.triggerBefore(true)},/`trigger`/)", "err": {}, - "uuid": "b0200d46-dd0e-41b9-807f-8c245fc787ca", - "parentUUID": "542bb227-d364-42ec-ba54-df501b070ef0", + "uuid": "28dd606f-56a7-4ff9-b002-6cdda6b96803", + "parentUUID": "37db051d-e8f1-4351-8718-ff01039f37fc", "isHook": false, "skipped": false }, @@ -532,8 +532,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));const now=new Date;a.triggerBefore(now);assert.deepStrictEqual(a.trigger(),now)", "err": {}, - "uuid": "4c5abadd-db00-45e5-a04f-1f55cce24608", - "parentUUID": "542bb227-d364-42ec-ba54-df501b070ef0", + "uuid": "96803d9b-5749-4293-bc79-525d4011d3f2", + "parentUUID": "37db051d-e8f1-4351-8718-ff01039f37fc", "isHook": false, "skipped": false }, @@ -550,8 +550,8 @@ "context": null, "code": "const a=new ICalAlarm({triggerBefore:moment()},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(moment.isMoment(a.trigger()))", "err": {}, - "uuid": "d3fa3493-7440-443b-8edf-c5a6959970dc", - "parentUUID": "542bb227-d364-42ec-ba54-df501b070ef0", + "uuid": "e924c6d2-775a-44c0-9e48-35aad96eed08", + "parentUUID": "37db051d-e8f1-4351-8718-ff01039f37fc", "isHook": false, "skipped": false }, @@ -568,8 +568,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));a.triggerBefore(2*60);assert.strictEqual(a.trigger(),120)", "err": {}, - "uuid": "c454cac5-5e5b-4fe4-a866-bcb274b1fd52", - "parentUUID": "542bb227-d364-42ec-ba54-df501b070ef0", + "uuid": "7b979907-4884-491d-9062-f91f9ed8267c", + "parentUUID": "37db051d-e8f1-4351-8718-ff01039f37fc", "isHook": false, "skipped": false }, @@ -586,32 +586,32 @@ "context": null, "code": "const trigger=moment(\"2015-02-01T13:38:45.000Z\");const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"TRIGGER:-PT10M\")>-1);a.triggerBefore(trigger);assert.ok(a.toString().indexOf(\"TRIGGER;VALUE=DATE-TIME:20150201T133845Z\")>-1)", "err": {}, - "uuid": "e2b06a56-a0c9-4ca1-8a2f-bd5cc233d743", - "parentUUID": "542bb227-d364-42ec-ba54-df501b070ef0", + "uuid": "2dc3312d-31dc-4406-8de1-157cbbff928c", + "parentUUID": "37db051d-e8f1-4351-8718-ff01039f37fc", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "d912075e-825f-40bf-9c9f-d26feb567da3", - "a7b7a15c-8b63-409c-8997-2bffa1439659", - "b0200d46-dd0e-41b9-807f-8c245fc787ca", - "4c5abadd-db00-45e5-a04f-1f55cce24608", - "d3fa3493-7440-443b-8edf-c5a6959970dc", - "c454cac5-5e5b-4fe4-a866-bcb274b1fd52", - "e2b06a56-a0c9-4ca1-8a2f-bd5cc233d743" + "f62c1888-2d92-4608-b636-a4a0fdb82d25", + "a83bd1dc-7aa5-44b3-841d-3b366a33cb61", + "28dd606f-56a7-4ff9-b002-6cdda6b96803", + "96803d9b-5749-4293-bc79-525d4011d3f2", + "e924c6d2-775a-44c0-9e48-35aad96eed08", + "7b979907-4884-491d-9062-f91f9ed8267c", + "2dc3312d-31dc-4406-8de1-157cbbff928c" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "3b188cd4-55c2-47ec-a741-bfc8dd4639f7", + "uuid": "5aaf2f53-a016-4c2d-85b2-9470335e9218", "title": "relatesTo()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -631,8 +631,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.relatesTo(null));assert.deepStrictEqual(a,a.relatesTo(ICalAlarmRelatesTo.end))", "err": {}, - "uuid": "98375832-fb2d-402e-baa8-607ee552e6b5", - "parentUUID": "3b188cd4-55c2-47ec-a741-bfc8dd4639f7", + "uuid": "73947239-53fc-4f82-b1b0-a915dda1d41d", + "parentUUID": "5aaf2f53-a016-4c2d-85b2-9470335e9218", "isHook": false, "skipped": false }, @@ -649,8 +649,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));a.relatesTo(ICalAlarmRelatesTo.end);assert.strictEqual(a.relatesTo(),ICalAlarmRelatesTo.end);a.relatesTo(null);assert.strictEqual(a.relatesTo(),null)", "err": {}, - "uuid": "3332c8c7-561a-4a99-9f79-a8450b79a494", - "parentUUID": "3b188cd4-55c2-47ec-a741-bfc8dd4639f7", + "uuid": "1d1a6a10-ea1f-475e-81a3-9c8a66e457ca", + "parentUUID": "5aaf2f53-a016-4c2d-85b2-9470335e9218", "isHook": false, "skipped": false }, @@ -667,8 +667,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.throws(function(){a.relatesTo(\"hi\")},/`relatesTo`/);assert.throws(function(){a.relatesTo(true)},/`relatesTo`/);assert.throws(function(){a.relatesTo(Infinity)},/`relatesTo`/)", "err": {}, - "uuid": "06a03f2e-95bc-45c4-875f-9017119f271f", - "parentUUID": "3b188cd4-55c2-47ec-a741-bfc8dd4639f7", + "uuid": "ca03c236-e375-4bbc-bc52-e5a7b1eecb5d", + "parentUUID": "5aaf2f53-a016-4c2d-85b2-9470335e9218", "isHook": false, "skipped": false }, @@ -685,18 +685,18 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"RELATED=START\")===-1);a.relatesTo(ICalAlarmRelatesTo.start);assert.ok(a.toString().indexOf(\"RELATED=START\")>-1);a.relatesTo(ICalAlarmRelatesTo.end);assert.ok(a.toString().indexOf(\"RELATED=END\")>-1)", "err": {}, - "uuid": "01eb861f-9b6b-4c62-a168-495549533782", - "parentUUID": "3b188cd4-55c2-47ec-a741-bfc8dd4639f7", + "uuid": "7bc76f88-7745-4748-9e39-878ef0626a36", + "parentUUID": "5aaf2f53-a016-4c2d-85b2-9470335e9218", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "98375832-fb2d-402e-baa8-607ee552e6b5", - "3332c8c7-561a-4a99-9f79-a8450b79a494", - "06a03f2e-95bc-45c4-875f-9017119f271f", - "01eb861f-9b6b-4c62-a168-495549533782" + "73947239-53fc-4f82-b1b0-a915dda1d41d", + "1d1a6a10-ea1f-475e-81a3-9c8a66e457ca", + "ca03c236-e375-4bbc-bc52-e5a7b1eecb5d", + "7bc76f88-7745-4748-9e39-878ef0626a36" ], "failures": [], "pending": [], @@ -707,7 +707,7 @@ "_timeout": 2000 }, { - "uuid": "6b4258ed-f7ce-4769-b701-060bf6186f48", + "uuid": "c1359d4d-1840-45d4-a9cd-d83a08c8f40d", "title": "repeat()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -727,8 +727,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.repeat({times:4,interval:60}))", "err": {}, - "uuid": "d9ce7df4-bbe9-4a55-b35c-c6ed408fa158", - "parentUUID": "6b4258ed-f7ce-4769-b701-060bf6186f48", + "uuid": "ad5b28d3-01f0-480f-bd59-d11730bfa742", + "parentUUID": "c1359d4d-1840-45d4-a9cd-d83a08c8f40d", "isHook": false, "skipped": false }, @@ -745,8 +745,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.strictEqual(a.repeat(),null);a.repeat({times:4,interval:60});assert.deepStrictEqual(a.repeat(),{times:4,interval:60})", "err": {}, - "uuid": "69e42bc0-0ee9-4e76-92d3-cd7c4a34f9db", - "parentUUID": "6b4258ed-f7ce-4769-b701-060bf6186f48", + "uuid": "417c61ac-1c68-4fce-91f9-fa0ed786e71b", + "parentUUID": "c1359d4d-1840-45d4-a9cd-d83a08c8f40d", "isHook": false, "skipped": false }, @@ -754,7 +754,7 @@ "title": "should throw error if repeat not allowed", "fullTitle": "ical-generator Alarm repeat() should throw error if repeat not allowed", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -763,8 +763,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.throws(function(){a.repeat({times:Infinity,interval:60})},/`repeat.times`/);assert.throws(function(){a.repeat({times:\"hi\",interval:60})},/`repeat.times`/);assert.throws(function(){a.repeat({times:true,interval:60})},/`repeat.times`/);assert.throws(function(){a.repeat({times:4,interval:Infinity})},/`repeat.interval`/);assert.throws(function(){a.repeat({times:4,interval:\"hi\"})},/`repeat.interval`/);assert.throws(function(){a.repeat({times:4,interval:true})},/`repeat.interval`/)", "err": {}, - "uuid": "fafd6114-ef97-4295-9e0c-100a30cdbaee", - "parentUUID": "6b4258ed-f7ce-4769-b701-060bf6186f48", + "uuid": "87385b85-ffb8-4a67-9efe-0e8e4a575ec0", + "parentUUID": "c1359d4d-1840-45d4-a9cd-d83a08c8f40d", "isHook": false, "skipped": false }, @@ -781,8 +781,8 @@ "context": null, "code": "const a=new ICalAlarm({trigger:300,repeat:{times:42,interval:90}},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().includes(\"REPEAT:42\"));assert.ok(a.toString().includes(\"DURATION:PT1M30S\"));a.repeat(null);assert.ok(!a.toString().includes(\"REPEAT:42\"));assert.ok(!a.toString().includes(\"DURATION:PT1M30S\"))", "err": {}, - "uuid": "5905c922-bc33-4b52-bb70-e1a64bd55a5d", - "parentUUID": "6b4258ed-f7ce-4769-b701-060bf6186f48", + "uuid": "f7b92f18-db2b-436c-b433-dcf9b1de755d", + "parentUUID": "c1359d4d-1840-45d4-a9cd-d83a08c8f40d", "isHook": false, "skipped": false }, @@ -799,8 +799,8 @@ "context": null, "code": "assert.throws(function(){new ICalAlarm({trigger:300,repeat:{times:4,interval:null}},new ICalEvent({start:new Date},new ICalCalendar))},/`repeat.interval`/)", "err": {}, - "uuid": "9be0415d-b483-482e-934b-e020a7944f0b", - "parentUUID": "6b4258ed-f7ce-4769-b701-060bf6186f48", + "uuid": "68275603-c465-40c1-8e91-7d7f4e5e7af3", + "parentUUID": "c1359d4d-1840-45d4-a9cd-d83a08c8f40d", "isHook": false, "skipped": false }, @@ -817,8 +817,8 @@ "context": null, "code": "assert.throws(function(){new ICalAlarm({trigger:300,repeat:{times:null,interval:60}},new ICalEvent({start:new Date},new ICalCalendar))},/`repeat.times`/)", "err": {}, - "uuid": "6f3a9313-698d-4047-9ce2-fa147fb02e1b", - "parentUUID": "6b4258ed-f7ce-4769-b701-060bf6186f48", + "uuid": "56df8b65-f914-4b98-99d0-a86c80595c84", + "parentUUID": "c1359d4d-1840-45d4-a9cd-d83a08c8f40d", "isHook": false, "skipped": false }, @@ -835,32 +835,32 @@ "context": null, "code": "assert.throws(function(){new ICalAlarm({trigger:300,repeat:true},new ICalEvent({start:new Date},new ICalCalendar))},/`repeat` is not correct, must be an object!/)", "err": {}, - "uuid": "aa068c37-0157-4de5-a0cf-e23b23fc92a1", - "parentUUID": "6b4258ed-f7ce-4769-b701-060bf6186f48", + "uuid": "b97c22b8-dc52-4542-a9a2-9c57485bbb95", + "parentUUID": "c1359d4d-1840-45d4-a9cd-d83a08c8f40d", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "d9ce7df4-bbe9-4a55-b35c-c6ed408fa158", - "69e42bc0-0ee9-4e76-92d3-cd7c4a34f9db", - "fafd6114-ef97-4295-9e0c-100a30cdbaee", - "5905c922-bc33-4b52-bb70-e1a64bd55a5d", - "9be0415d-b483-482e-934b-e020a7944f0b", - "6f3a9313-698d-4047-9ce2-fa147fb02e1b", - "aa068c37-0157-4de5-a0cf-e23b23fc92a1" + "ad5b28d3-01f0-480f-bd59-d11730bfa742", + "417c61ac-1c68-4fce-91f9-fa0ed786e71b", + "87385b85-ffb8-4a67-9efe-0e8e4a575ec0", + "f7b92f18-db2b-436c-b433-dcf9b1de755d", + "68275603-c465-40c1-8e91-7d7f4e5e7af3", + "56df8b65-f914-4b98-99d0-a86c80595c84", + "b97c22b8-dc52-4542-a9a2-9c57485bbb95" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "c8b0311d-4e26-45ec-94be-95011c67b279", + "uuid": "8a3d715f-6947-4ff9-a38d-18ee667a3ded", "title": "attach()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -880,8 +880,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.attach(null));assert.deepStrictEqual(a,a.attach(\"https://sebbo.net/beep.aud\"))", "err": {}, - "uuid": "a5b28372-04c4-4b85-8438-04cdf82c9784", - "parentUUID": "c8b0311d-4e26-45ec-94be-95011c67b279", + "uuid": "5b665fcb-3ce1-4f94-9171-fca6a9522619", + "parentUUID": "8a3d715f-6947-4ff9-a38d-18ee667a3ded", "isHook": false, "skipped": false }, @@ -898,8 +898,8 @@ "context": null, "code": "const t={uri:\"https://example.com/alarm.aud\",mime:\"audio/basic\"};const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.strictEqual(a.attach(),null);a.attach(t);assert.deepStrictEqual(a.attach(),t);a.attach(\"https://www.example.com/beep.aud\");assert.deepStrictEqual(a.attach(),{uri:\"https://www.example.com/beep.aud\",mime:null});a.attach({uri:\"https://www.example.com/beep.aud\"});assert.deepStrictEqual(a.attach(),{uri:\"https://www.example.com/beep.aud\",mime:null});a.attach(null);assert.strictEqual(a.attach(),null)", "err": {}, - "uuid": "29968dc3-dbe0-4a34-840d-b5cb7c5c0a29", - "parentUUID": "c8b0311d-4e26-45ec-94be-95011c67b279", + "uuid": "b7e52af7-3eaf-483f-9dc4-b981b2a25799", + "parentUUID": "8a3d715f-6947-4ff9-a38d-18ee667a3ded", "isHook": false, "skipped": false }, @@ -916,8 +916,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.throws(function(){a.attach({mime:\"audio/basic\"})},/`attach.uri`/)", "err": {}, - "uuid": "f13b8e66-8cfa-4187-bc8d-2becdda0c7a9", - "parentUUID": "c8b0311d-4e26-45ec-94be-95011c67b279", + "uuid": "fafabfd9-d427-46a1-97e6-00889e449e02", + "parentUUID": "8a3d715f-6947-4ff9-a38d-18ee667a3ded", "isHook": false, "skipped": false }, @@ -925,7 +925,7 @@ "title": "should throw error when unknown format", "fullTitle": "ical-generator Alarm attach() should throw error when unknown format", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -934,8 +934,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.throws(function(){a.attach(Infinity)},/`attachment`/)", "err": {}, - "uuid": "0b9ab902-b33c-4b5d-af9d-30f0ee58f417", - "parentUUID": "c8b0311d-4e26-45ec-94be-95011c67b279", + "uuid": "e7ad7f80-cbe5-4050-bf65-b7bcd5b855ff", + "parentUUID": "8a3d715f-6947-4ff9-a38d-18ee667a3ded", "isHook": false, "skipped": false }, @@ -952,30 +952,30 @@ "context": null, "code": "const a=new ICalAlarm({type:ICalAlarmType.audio},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"\\r\\nATTACH;VALUE=URI:Basso\")>-1);a.attach(\"https://example.com/beep.aud\");assert.ok(a.toString().indexOf(\"\\r\\nATTACH;VALUE=URI:https://example.com/beep.aud\")>-1);a.attach({uri:\"https://example.com/beep.aud\",mime:\"audio/basic\"});assert.ok(a.toString().indexOf(\"\\r\\nATTACH;FMTTYPE=audio/basic:https://example.com/beep.aud\")>-1)", "err": {}, - "uuid": "ed44ae33-3e47-4621-b03d-84d2f14032b9", - "parentUUID": "c8b0311d-4e26-45ec-94be-95011c67b279", + "uuid": "7fc7ae88-a3b8-4ece-a012-c6139d6151aa", + "parentUUID": "8a3d715f-6947-4ff9-a38d-18ee667a3ded", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "a5b28372-04c4-4b85-8438-04cdf82c9784", - "29968dc3-dbe0-4a34-840d-b5cb7c5c0a29", - "f13b8e66-8cfa-4187-bc8d-2becdda0c7a9", - "0b9ab902-b33c-4b5d-af9d-30f0ee58f417", - "ed44ae33-3e47-4621-b03d-84d2f14032b9" + "5b665fcb-3ce1-4f94-9171-fca6a9522619", + "b7e52af7-3eaf-483f-9dc4-b981b2a25799", + "fafabfd9-d427-46a1-97e6-00889e449e02", + "e7ad7f80-cbe5-4050-bf65-b7bcd5b855ff", + "7fc7ae88-a3b8-4ece-a012-c6139d6151aa" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "d9588dfc-2a60-4956-85f3-80e89c6fe3cb", + "uuid": "34a4dee1-1b54-4328-9f37-ec0701e339c8", "title": "description()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -995,8 +995,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.description(null));assert.deepStrictEqual(a,a.description(\"Hey Ho!\"))", "err": {}, - "uuid": "53a23c5b-d43c-484f-8adf-3ef46107a06f", - "parentUUID": "d9588dfc-2a60-4956-85f3-80e89c6fe3cb", + "uuid": "4fda540b-1134-4e27-8f4d-6aecd2edc38c", + "parentUUID": "34a4dee1-1b54-4328-9f37-ec0701e339c8", "isHook": false, "skipped": false }, @@ -1013,8 +1013,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a.description(),null);a.description(\"blablabla\");assert.deepStrictEqual(a.description(),\"blablabla\");a.description(null);assert.deepStrictEqual(a.description(),null)", "err": {}, - "uuid": "a924e3a1-6ad9-4c03-b257-b49820695b43", - "parentUUID": "d9588dfc-2a60-4956-85f3-80e89c6fe3cb", + "uuid": "495ff4b2-406a-4ed6-baa2-057f05a7dbdf", + "parentUUID": "34a4dee1-1b54-4328-9f37-ec0701e339c8", "isHook": false, "skipped": false }, @@ -1022,7 +1022,7 @@ "title": "should change something", "fullTitle": "ical-generator Alarm description() should change something", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -1031,8 +1031,8 @@ "context": null, "code": "const a=new ICalAlarm({description:\"Huibuh!\"},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"\\r\\nDESCRIPTION:Huibuh\")>-1)", "err": {}, - "uuid": "439a9189-ad3e-4cbc-b154-599e9b93d07e", - "parentUUID": "d9588dfc-2a60-4956-85f3-80e89c6fe3cb", + "uuid": "eebc09f4-1cb4-4c3d-89e3-4e21f06cbe24", + "parentUUID": "34a4dee1-1b54-4328-9f37-ec0701e339c8", "isHook": false, "skipped": false }, @@ -1049,29 +1049,29 @@ "context": null, "code": "const a=new ICalAlarm({description:\"Example Event\"},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"\\r\\nDESCRIPTION:Example Event\")>-1)", "err": {}, - "uuid": "11bb9148-d618-4460-b2df-d8b6b1ae673c", - "parentUUID": "d9588dfc-2a60-4956-85f3-80e89c6fe3cb", + "uuid": "1ae0a5ac-316d-424c-93f2-fceea387ef48", + "parentUUID": "34a4dee1-1b54-4328-9f37-ec0701e339c8", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "53a23c5b-d43c-484f-8adf-3ef46107a06f", - "a924e3a1-6ad9-4c03-b257-b49820695b43", - "439a9189-ad3e-4cbc-b154-599e9b93d07e", - "11bb9148-d618-4460-b2df-d8b6b1ae673c" + "4fda540b-1134-4e27-8f4d-6aecd2edc38c", + "495ff4b2-406a-4ed6-baa2-057f05a7dbdf", + "eebc09f4-1cb4-4c3d-89e3-4e21f06cbe24", + "1ae0a5ac-316d-424c-93f2-fceea387ef48" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "1b540f28-be28-4477-b1f6-7ee28e8111d3", + "uuid": "6da4831c-2db9-4798-ac93-0d4b4777cc63", "title": "summary()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -1091,8 +1091,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.summary(null));assert.deepStrictEqual(a,a.summary(\"Hey Ho!\"))", "err": {}, - "uuid": "191306da-f008-4c36-83b9-abf70169d602", - "parentUUID": "1b540f28-be28-4477-b1f6-7ee28e8111d3", + "uuid": "16ffa323-cd9e-4b50-8f03-d6ab0516a273", + "parentUUID": "6da4831c-2db9-4798-ac93-0d4b4777cc63", "isHook": false, "skipped": false }, @@ -1109,8 +1109,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a.summary(),null);a.summary(\"blablabla\");assert.deepStrictEqual(a.summary(),\"blablabla\");a.summary(null);assert.deepStrictEqual(a.summary(),null)", "err": {}, - "uuid": "d84bcadb-e603-43a1-a560-a09828e18e2d", - "parentUUID": "1b540f28-be28-4477-b1f6-7ee28e8111d3", + "uuid": "2931d5a9-8f5c-4d16-966c-51ce3e5e663d", + "parentUUID": "6da4831c-2db9-4798-ac93-0d4b4777cc63", "isHook": false, "skipped": false }, @@ -1127,8 +1127,8 @@ "context": null, "code": "const a=new ICalAlarm({type:ICalAlarmType.email,summary:\"Huibuh!\"},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"\\r\\nSUMMARY:Huibuh\")>-1)", "err": {}, - "uuid": "ae3fb5d9-aa73-45ba-a8a7-a8fe22456599", - "parentUUID": "1b540f28-be28-4477-b1f6-7ee28e8111d3", + "uuid": "67710ffe-c96e-4cf2-aa19-814225cc7f5d", + "parentUUID": "6da4831c-2db9-4798-ac93-0d4b4777cc63", "isHook": false, "skipped": false }, @@ -1136,7 +1136,7 @@ "title": "should fallback to event summary", "fullTitle": "ical-generator Alarm summary() should fallback to event summary", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -1145,29 +1145,29 @@ "context": null, "code": "const a=new ICalAlarm({type:ICalAlarmType.email},new ICalEvent({start:new Date,summary:\"Example Event\"},new ICalCalendar));assert.ok(a.toString().indexOf(\"\\r\\nSUMMARY:Example Event\")>-1)", "err": {}, - "uuid": "9cd6493e-0959-4551-a6de-68ae5a498122", - "parentUUID": "1b540f28-be28-4477-b1f6-7ee28e8111d3", + "uuid": "d4283eb6-246d-4e5f-8b66-288624e4428e", + "parentUUID": "6da4831c-2db9-4798-ac93-0d4b4777cc63", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "191306da-f008-4c36-83b9-abf70169d602", - "d84bcadb-e603-43a1-a560-a09828e18e2d", - "ae3fb5d9-aa73-45ba-a8a7-a8fe22456599", - "9cd6493e-0959-4551-a6de-68ae5a498122" + "16ffa323-cd9e-4b50-8f03-d6ab0516a273", + "2931d5a9-8f5c-4d16-966c-51ce3e5e663d", + "67710ffe-c96e-4cf2-aa19-814225cc7f5d", + "d4283eb6-246d-4e5f-8b66-288624e4428e" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "d4db6b39-9785-4fc2-96e7-80640d9b2dae", + "uuid": "4d5b1ad2-86ec-499f-8ac7-3578c45e3d9a", "title": "createAttendee()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -1187,8 +1187,8 @@ "context": null, "code": "const alarm=new ICalEvent({start:new Date},new ICalCalendar).createAlarm({type:ICalAlarmType.email});const attendee=new ICalAttendee({email:\"mail@example.com\"},alarm);assert.strictEqual(alarm.createAttendee(attendee),attendee,\"createAttendee returns attendee\");assert.deepStrictEqual(alarm.attendees()[0],attendee,\"attendee pushed\")", "err": {}, - "uuid": "2e5680a1-d400-4047-a9e9-3843359c65c9", - "parentUUID": "d4db6b39-9785-4fc2-96e7-80640d9b2dae", + "uuid": "a5a0de20-f86e-4cd8-a162-04ec5b7b0931", + "parentUUID": "4d5b1ad2-86ec-499f-8ac7-3578c45e3d9a", "isHook": false, "skipped": false }, @@ -1205,8 +1205,8 @@ "context": null, "code": "const alarm=new ICalEvent({start:new Date},new ICalCalendar).createAlarm({type:ICalAlarmType.email});;assert.ok(alarm.createAttendee({email:\"mail@example.com\"})instanceof ICalAttendee);assert.strictEqual(alarm.attendees.length,1,\"attendee pushed\")", "err": {}, - "uuid": "16913cd9-201f-4291-a24e-a5be88c837e7", - "parentUUID": "d4db6b39-9785-4fc2-96e7-80640d9b2dae", + "uuid": "750cd31a-56d0-48bf-9b63-bb01006cbfd5", + "parentUUID": "4d5b1ad2-86ec-499f-8ac7-3578c45e3d9a", "isHook": false, "skipped": false }, @@ -1214,7 +1214,7 @@ "title": "should accept string", "fullTitle": "ical-generator Alarm createAttendee() should accept string", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -1223,8 +1223,8 @@ "context": null, "code": "const alarm=new ICalEvent({start:new Date},new ICalCalendar).createAlarm({type:ICalAlarmType.email});;const attendee=alarm.createAttendee(\"Zac \");assert.strictEqual(attendee.name(),\"Zac\");assert.strictEqual(attendee.email(),\"zac@example.com\");assert.strictEqual(alarm.attendees().length,1,\"attendee pushed\")", "err": {}, - "uuid": "3e35f208-b895-4434-93c7-a657e2b20177", - "parentUUID": "d4db6b39-9785-4fc2-96e7-80640d9b2dae", + "uuid": "2b391df0-a190-4428-8145-43af08027c45", + "parentUUID": "4d5b1ad2-86ec-499f-8ac7-3578c45e3d9a", "isHook": false, "skipped": false }, @@ -1241,8 +1241,8 @@ "context": null, "code": "const alarm=new ICalEvent({start:new Date},new ICalCalendar).createAlarm({type:ICalAlarmType.email});;assert.throws(function(){alarm.createAttendee(\"foo bar\")},/isn't formated correctly/)", "err": {}, - "uuid": "794a6fb2-c14e-414e-8ee7-382363509861", - "parentUUID": "d4db6b39-9785-4fc2-96e7-80640d9b2dae", + "uuid": "e8d79668-c504-4236-a2e0-f74ec622dec5", + "parentUUID": "4d5b1ad2-86ec-499f-8ac7-3578c45e3d9a", "isHook": false, "skipped": false }, @@ -1259,30 +1259,30 @@ "context": null, "code": "const alarm=new ICalEvent({start:new Date},new ICalCalendar).createAlarm({type:ICalAlarmType.email});const attendee=alarm.createAttendee({name:\"Zac\",email:\"zac@example.com\"});assert.strictEqual(attendee.name(),\"Zac\");assert.strictEqual(attendee.email(),\"zac@example.com\");assert.strictEqual(alarm.attendees().length,1,\"attendee pushed\");assert.ok(alarm.toString().includes('ATTENDEE;ROLE=REQ-PARTICIPANT;CN=\"Zac\":MAILTO:zac@example.com'))", "err": {}, - "uuid": "261f052d-dd86-4f11-abc5-e904d45c55d6", - "parentUUID": "d4db6b39-9785-4fc2-96e7-80640d9b2dae", + "uuid": "e8d6d57c-0bc5-45cd-b470-2a7e2bbc715a", + "parentUUID": "4d5b1ad2-86ec-499f-8ac7-3578c45e3d9a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "2e5680a1-d400-4047-a9e9-3843359c65c9", - "16913cd9-201f-4291-a24e-a5be88c837e7", - "3e35f208-b895-4434-93c7-a657e2b20177", - "794a6fb2-c14e-414e-8ee7-382363509861", - "261f052d-dd86-4f11-abc5-e904d45c55d6" + "a5a0de20-f86e-4cd8-a162-04ec5b7b0931", + "750cd31a-56d0-48bf-9b63-bb01006cbfd5", + "2b391df0-a190-4428-8145-43af08027c45", + "e8d79668-c504-4236-a2e0-f74ec622dec5", + "e8d6d57c-0bc5-45cd-b470-2a7e2bbc715a" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "bafe38d8-5656-408e-949b-4e03934bc3f4", + "uuid": "ad738ddb-01b5-4f32-bb41-9fe3612b9a5f", "title": "attendees()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -1302,8 +1302,8 @@ "context": null, "code": "const alarm=new ICalEvent({start:new Date},new ICalCalendar).createAlarm({type:ICalAlarmType.email});assert.strictEqual(alarm.attendees().length,0);const attendee=alarm.createAttendee({email:\"mail@example.com\"});assert.strictEqual(alarm.attendees().length,1);assert.deepStrictEqual(alarm.attendees()[0],attendee)", "err": {}, - "uuid": "fe149eb9-f5fb-4a21-9deb-e62ffc5d7a31", - "parentUUID": "bafe38d8-5656-408e-949b-4e03934bc3f4", + "uuid": "5bdcfc1c-2af0-41aa-a27d-a78032b9be90", + "parentUUID": "ad738ddb-01b5-4f32-bb41-9fe3612b9a5f", "isHook": false, "skipped": false }, @@ -1320,16 +1320,16 @@ "context": null, "code": "const alarm=new ICalEvent({start:new Date},new ICalCalendar).createAlarm({type:ICalAlarmType.email});const foo=alarm.attendees([{name:\"Person A\",email:\"a@example.com\"},{name:\"Person B\",email:\"b@example.com\"}]);assert.strictEqual(alarm.attendees().length,2);assert.deepStrictEqual(foo,alarm)", "err": {}, - "uuid": "73059790-c53b-4084-aae8-f4e6a7fb7697", - "parentUUID": "bafe38d8-5656-408e-949b-4e03934bc3f4", + "uuid": "e0b850ba-28c9-4e18-bd7a-ef88149ac733", + "parentUUID": "ad738ddb-01b5-4f32-bb41-9fe3612b9a5f", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "fe149eb9-f5fb-4a21-9deb-e62ffc5d7a31", - "73059790-c53b-4084-aae8-f4e6a7fb7697" + "5bdcfc1c-2af0-41aa-a27d-a78032b9be90", + "e0b850ba-28c9-4e18-bd7a-ef88149ac733" ], "failures": [], "pending": [], @@ -1340,7 +1340,7 @@ "_timeout": 2000 }, { - "uuid": "ad67bc83-d4b9-4ec9-b0d2-d66321887f8a", + "uuid": "bc3c5fd5-1f87-444e-b890-e6f6e739869e", "title": "x()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -1360,15 +1360,15 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.x(\"X-FOO\",\"bar\"))", "err": {}, - "uuid": "956b622a-3d22-4167-b949-8ad4814894b7", - "parentUUID": "ad67bc83-d4b9-4ec9-b0d2-d66321887f8a", + "uuid": "529f5130-e5d7-401a-8e2e-1f43a9e0b070", + "parentUUID": "bc3c5fd5-1f87-444e-b890-e6f6e739869e", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "956b622a-3d22-4167-b949-8ad4814894b7" + "529f5130-e5d7-401a-8e2e-1f43a9e0b070" ], "failures": [], "pending": [], @@ -1379,7 +1379,7 @@ "_timeout": 2000 }, { - "uuid": "78f2f9c7-ba79-491f-abdd-676501224956", + "uuid": "2f961391-2590-4dc6-aff6-b9b8b4ee0399", "title": "toJSON()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/alarm.ts", "file": "/test/alarm.ts", @@ -1399,8 +1399,8 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));a.type(ICalAlarmType.display);a.trigger(120);assert.deepStrictEqual(a.toJSON(),{attach:null,attendees:[],description:null,relatesTo:null,interval:null,repeat:null,summary:null,trigger:120,type:\"display\",x:[]})", "err": {}, - "uuid": "c1b8aa59-d14c-4641-85f2-bcd0ff3f4192", - "parentUUID": "78f2f9c7-ba79-491f-abdd-676501224956", + "uuid": "e161e2a6-103c-4834-af23-c389a5f40755", + "parentUUID": "2f961391-2590-4dc6-aff6-b9b8b4ee0399", "isHook": false, "skipped": false }, @@ -1417,16 +1417,16 @@ "context": null, "code": "const a=new ICalAlarm({},new ICalEvent({start:new Date},new ICalCalendar));new ICalAlarm(a.toJSON(),new ICalEvent({start:new Date},new ICalCalendar))", "err": {}, - "uuid": "fba4e103-7ba8-487a-a899-78fc58fde790", - "parentUUID": "78f2f9c7-ba79-491f-abdd-676501224956", + "uuid": "0448a62a-787b-46a4-83d8-c76aa422798a", + "parentUUID": "2f961391-2590-4dc6-aff6-b9b8b4ee0399", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "c1b8aa59-d14c-4641-85f2-bcd0ff3f4192", - "fba4e103-7ba8-487a-a899-78fc58fde790" + "e161e2a6-103c-4834-af23-c389a5f40755", + "0448a62a-787b-46a4-83d8-c76aa422798a" ], "failures": [], "pending": [], @@ -1447,7 +1447,7 @@ "_timeout": 2000 }, { - "uuid": "94bee6c1-fdf4-4f76-b4df-a42fa4271211", + "uuid": "a752cfd5-f349-41d6-ba82-89dd39804ee5", "title": "ical-generator Attendee", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -1456,7 +1456,7 @@ "tests": [], "suites": [ { - "uuid": "147ce0d1-c5ee-422f-9264-bcc6dd55e74b", + "uuid": "c9225881-3bb7-4d76-ad2b-55a54597ef75", "title": "constructor()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -1476,8 +1476,8 @@ "context": null, "code": "const data={name:\"John Doe\",email:\"john@example.org\",mailto:\"john+calendar@example.org\",sentBy:null,status:ICalAttendeeStatus.ACCEPTED,role:ICalAttendeeRole.REQ,rsvp:false,type:ICalAttendeeType.INDIVIDUAL,delegatedTo:null,delegatedFrom:null,x:[]};const event=new ICalAttendee(data,new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(event.toJSON(),data)", "err": {}, - "uuid": "af2a1d30-2f55-4e44-897c-a9e435a43f08", - "parentUUID": "147ce0d1-c5ee-422f-9264-bcc6dd55e74b", + "uuid": "e5f0d55d-27d3-4192-9fd5-b8f07640a13e", + "parentUUID": "c9225881-3bb7-4d76-ad2b-55a54597ef75", "isHook": false, "skipped": false }, @@ -1494,8 +1494,8 @@ "context": null, "code": "assert.throws(function(){new ICalAttendee({email:\"foo@bar.com\"})},/`event`/)", "err": {}, - "uuid": "b06c31cd-542a-47f0-9df2-b29830ade146", - "parentUUID": "147ce0d1-c5ee-422f-9264-bcc6dd55e74b", + "uuid": "cfe53d5b-b6e7-49cd-bce9-7a1f33b7ffba", + "parentUUID": "c9225881-3bb7-4d76-ad2b-55a54597ef75", "isHook": false, "skipped": false }, @@ -1512,17 +1512,17 @@ "context": null, "code": "assert.throws(function(){new ICalAttendee({name:\"Testuser\"},new ICalEvent({start:new Date},new ICalCalendar))},/`email`/)", "err": {}, - "uuid": "ec238eb7-8ec7-49fd-9532-5b2beb27e8e2", - "parentUUID": "147ce0d1-c5ee-422f-9264-bcc6dd55e74b", + "uuid": "aefa438b-78d1-47b1-8461-08e25540e8aa", + "parentUUID": "c9225881-3bb7-4d76-ad2b-55a54597ef75", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "af2a1d30-2f55-4e44-897c-a9e435a43f08", - "b06c31cd-542a-47f0-9df2-b29830ade146", - "ec238eb7-8ec7-49fd-9532-5b2beb27e8e2" + "e5f0d55d-27d3-4192-9fd5-b8f07640a13e", + "cfe53d5b-b6e7-49cd-bce9-7a1f33b7ffba", + "aefa438b-78d1-47b1-8461-08e25540e8aa" ], "failures": [], "pending": [], @@ -1533,7 +1533,7 @@ "_timeout": 2000 }, { - "uuid": "d7584b2f-af4a-48c0-a09d-3f94f1e56b58", + "uuid": "30378c6e-c8ab-482b-a483-a7937ecd1a28", "title": "name()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -1544,7 +1544,7 @@ "title": "getter should return value", "fullTitle": "ical-generator Attendee name() getter should return value", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -1553,8 +1553,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.strictEqual(a.name(),null);a.name(\"Sebastian\");assert.strictEqual(a.name(),\"Sebastian\")", "err": {}, - "uuid": "6ef0337c-2f89-4afc-9f6c-ae83319ce781", - "parentUUID": "d7584b2f-af4a-48c0-a09d-3f94f1e56b58", + "uuid": "8d744750-3222-40b5-8464-07d49b002527", + "parentUUID": "30378c6e-c8ab-482b-a483-a7937ecd1a28", "isHook": false, "skipped": false }, @@ -1562,7 +1562,7 @@ "title": "setter should return this", "fullTitle": "ical-generator Attendee name() setter should return this", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -1571,8 +1571,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.name(null));assert.deepStrictEqual(a,a.name(\"Sebastian\"))", "err": {}, - "uuid": "de74c370-53e3-4473-ae17-646441a922c6", - "parentUUID": "d7584b2f-af4a-48c0-a09d-3f94f1e56b58", + "uuid": "efc75696-4a46-4064-acce-3664ed928178", + "parentUUID": "30378c6e-c8ab-482b-a483-a7937ecd1a28", "isHook": false, "skipped": false }, @@ -1589,17 +1589,17 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));a.name(\"Sebastian\");assert.strictEqual(a.name(),\"Sebastian\");a.name(null);assert.strictEqual(a.name(),null)", "err": {}, - "uuid": "de8fa6ba-61e7-4798-945f-446afbc5f4b9", - "parentUUID": "d7584b2f-af4a-48c0-a09d-3f94f1e56b58", + "uuid": "a28ed774-38ba-4110-956f-6ccef21e93a9", + "parentUUID": "30378c6e-c8ab-482b-a483-a7937ecd1a28", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "6ef0337c-2f89-4afc-9f6c-ae83319ce781", - "de74c370-53e3-4473-ae17-646441a922c6", - "de8fa6ba-61e7-4798-945f-446afbc5f4b9" + "8d744750-3222-40b5-8464-07d49b002527", + "efc75696-4a46-4064-acce-3664ed928178", + "a28ed774-38ba-4110-956f-6ccef21e93a9" ], "failures": [], "pending": [], @@ -1610,7 +1610,7 @@ "_timeout": 2000 }, { - "uuid": "e7fb8532-b3da-4848-bb3a-eb9e5551bc3a", + "uuid": "298d2010-20ac-4bee-8f8d-262fdc461b0e", "title": "email()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -1630,8 +1630,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar)).email(\"foo@example.com\");assert.strictEqual(a.email(),\"foo@example.com\")", "err": {}, - "uuid": "6b419274-5609-4822-8969-7306a8c2e0d9", - "parentUUID": "e7fb8532-b3da-4848-bb3a-eb9e5551bc3a", + "uuid": "fafab60f-98e4-403a-bc40-beef5b412f5a", + "parentUUID": "298d2010-20ac-4bee-8f8d-262fdc461b0e", "isHook": false, "skipped": false }, @@ -1648,8 +1648,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.email(\"foo@example.com\"))", "err": {}, - "uuid": "86e7881c-dce8-4aa7-8b0a-e986855bdbe8", - "parentUUID": "e7fb8532-b3da-4848-bb3a-eb9e5551bc3a", + "uuid": "a850a1f3-7ea8-4839-abd6-4e2a63742309", + "parentUUID": "298d2010-20ac-4bee-8f8d-262fdc461b0e", "isHook": false, "skipped": false }, @@ -1666,17 +1666,17 @@ "context": null, "code": "const a=new ICalAttendee({email:\"mail@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"mail@example.com\")>-1)", "err": {}, - "uuid": "c01ed6a6-7efc-4284-8440-f8bbc9ea4b97", - "parentUUID": "e7fb8532-b3da-4848-bb3a-eb9e5551bc3a", + "uuid": "bedda1e9-523f-4d6e-81fd-05e1e67dfe1b", + "parentUUID": "298d2010-20ac-4bee-8f8d-262fdc461b0e", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "6b419274-5609-4822-8969-7306a8c2e0d9", - "86e7881c-dce8-4aa7-8b0a-e986855bdbe8", - "c01ed6a6-7efc-4284-8440-f8bbc9ea4b97" + "fafab60f-98e4-403a-bc40-beef5b412f5a", + "a850a1f3-7ea8-4839-abd6-4e2a63742309", + "bedda1e9-523f-4d6e-81fd-05e1e67dfe1b" ], "failures": [], "pending": [], @@ -1687,7 +1687,7 @@ "_timeout": 2000 }, { - "uuid": "c372b320-6b7e-4e93-9181-bf2e130241c2", + "uuid": "dd496c6c-3c62-4432-968b-f0cbe4c3e3fd", "title": "mailto()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -1707,8 +1707,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.strictEqual(a.mailto(),null);a.mailto(\"foo@example.com\");assert.strictEqual(a.mailto(),\"foo@example.com\")", "err": {}, - "uuid": "da86a522-5913-4360-b6da-040979796f7c", - "parentUUID": "c372b320-6b7e-4e93-9181-bf2e130241c2", + "uuid": "a296d8a5-5c5c-40c0-b490-396bbbcbeff6", + "parentUUID": "dd496c6c-3c62-4432-968b-f0cbe4c3e3fd", "isHook": false, "skipped": false }, @@ -1725,8 +1725,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.mailto(null));assert.deepStrictEqual(a,a.mailto(\"foo@example.com\"))", "err": {}, - "uuid": "f0ccd9d2-271b-4284-98ac-a0c26d4fcc2b", - "parentUUID": "c372b320-6b7e-4e93-9181-bf2e130241c2", + "uuid": "f5abaadd-7786-45bd-91cc-a23bb35b1c92", + "parentUUID": "dd496c6c-3c62-4432-968b-f0cbe4c3e3fd", "isHook": false, "skipped": false }, @@ -1743,17 +1743,17 @@ "context": null, "code": "const a=new ICalAttendee({email:\"mail@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));a.mailto(\"mail2@example2.com\");assert.ok(a.toString().indexOf(\"EMAIL=mail@example.com\")>-1&&a.toString().indexOf(\"MAILTO:mail2@example2.com\")>-1)", "err": {}, - "uuid": "b1676bad-b819-4210-9787-092edc859cae", - "parentUUID": "c372b320-6b7e-4e93-9181-bf2e130241c2", + "uuid": "0e88ac01-b5bd-401c-903f-7d943b3e7752", + "parentUUID": "dd496c6c-3c62-4432-968b-f0cbe4c3e3fd", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "da86a522-5913-4360-b6da-040979796f7c", - "f0ccd9d2-271b-4284-98ac-a0c26d4fcc2b", - "b1676bad-b819-4210-9787-092edc859cae" + "a296d8a5-5c5c-40c0-b490-396bbbcbeff6", + "f5abaadd-7786-45bd-91cc-a23bb35b1c92", + "0e88ac01-b5bd-401c-903f-7d943b3e7752" ], "failures": [], "pending": [], @@ -1764,7 +1764,7 @@ "_timeout": 2000 }, { - "uuid": "ceedadd7-d4ce-4972-94ff-85dbc424dd08", + "uuid": "586fc192-3d3a-44d8-bb37-01f3145f05ec", "title": "sentBy()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -1784,8 +1784,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar)).sentBy(\"foo@example.com\");assert.strictEqual(a.sentBy(),\"foo@example.com\")", "err": {}, - "uuid": "56d4efba-81bd-49e1-ae19-a5909415b95d", - "parentUUID": "ceedadd7-d4ce-4972-94ff-85dbc424dd08", + "uuid": "c13d47ce-2c93-47c2-baae-e9263f632722", + "parentUUID": "586fc192-3d3a-44d8-bb37-01f3145f05ec", "isHook": false, "skipped": false }, @@ -1802,8 +1802,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.sentBy(\"foo@example.com\"))", "err": {}, - "uuid": "fd8fa019-6907-409d-b410-d05f31393e75", - "parentUUID": "ceedadd7-d4ce-4972-94ff-85dbc424dd08", + "uuid": "ab92f7a1-9fa3-429f-a5b3-ec507c5bb840", + "parentUUID": "586fc192-3d3a-44d8-bb37-01f3145f05ec", "isHook": false, "skipped": false }, @@ -1820,17 +1820,17 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\",sentBy:\"bar@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().includes(\"bar@example.com\"))", "err": {}, - "uuid": "a051b9f7-6a75-4ce2-8fbf-694a9685c780", - "parentUUID": "ceedadd7-d4ce-4972-94ff-85dbc424dd08", + "uuid": "5bacfdb4-cb7a-40e3-a95d-a11e1f87653d", + "parentUUID": "586fc192-3d3a-44d8-bb37-01f3145f05ec", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "56d4efba-81bd-49e1-ae19-a5909415b95d", - "fd8fa019-6907-409d-b410-d05f31393e75", - "a051b9f7-6a75-4ce2-8fbf-694a9685c780" + "c13d47ce-2c93-47c2-baae-e9263f632722", + "ab92f7a1-9fa3-429f-a5b3-ec507c5bb840", + "5bacfdb4-cb7a-40e3-a95d-a11e1f87653d" ], "failures": [], "pending": [], @@ -1841,7 +1841,7 @@ "_timeout": 2000 }, { - "uuid": "6958fc7a-ed26-4208-87b0-19f9fb57913d", + "uuid": "7c26501f-5587-4c82-a89d-bf130d81b610", "title": "role()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -1861,8 +1861,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.role(ICalAttendeeRole.REQ))", "err": {}, - "uuid": "90abc534-e120-422a-b486-978bdea543c2", - "parentUUID": "6958fc7a-ed26-4208-87b0-19f9fb57913d", + "uuid": "684218e2-0bba-4432-b251-b22427a5a148", + "parentUUID": "7c26501f-5587-4c82-a89d-bf130d81b610", "isHook": false, "skipped": false }, @@ -1870,7 +1870,7 @@ "title": "getter should return value", "fullTitle": "ical-generator Attendee role() getter should return value", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -1879,8 +1879,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar)).role(ICalAttendeeRole.REQ);assert.strictEqual(a.role(),\"REQ-PARTICIPANT\")", "err": {}, - "uuid": "4f0631c4-e216-4b22-8ce6-81f9d8fe32d7", - "parentUUID": "6958fc7a-ed26-4208-87b0-19f9fb57913d", + "uuid": "73edd95d-c040-4898-b74f-2aca22cf0b67", + "parentUUID": "7c26501f-5587-4c82-a89d-bf130d81b610", "isHook": false, "skipped": false }, @@ -1888,7 +1888,7 @@ "title": "should throw error when method empty", "fullTitle": "ical-generator Attendee role() should throw error when method empty", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -1897,8 +1897,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.throws(function(){a.role(\"\")},/Input must be one of the following: CHAIR, REQ-PARTICIPANT, OPT-PARTICIPANT, NON-PARTICIPANT/)", "err": {}, - "uuid": "2e71ae54-9c81-47d9-85b9-0491d17d3318", - "parentUUID": "6958fc7a-ed26-4208-87b0-19f9fb57913d", + "uuid": "8f4cffcd-e9e5-46c5-889d-14fd5e37ff27", + "parentUUID": "7c26501f-5587-4c82-a89d-bf130d81b610", "isHook": false, "skipped": false }, @@ -1915,8 +1915,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.throws(function(){a.role(\"COOKING\")},/must be one of the following/)", "err": {}, - "uuid": "50e2f073-f048-4e0c-bd25-3d9e0aa7965f", - "parentUUID": "6958fc7a-ed26-4208-87b0-19f9fb57913d", + "uuid": "16b3a8e6-552e-4e36-98b9-4a0fdadc41ed", + "parentUUID": "7c26501f-5587-4c82-a89d-bf130d81b610", "isHook": false, "skipped": false }, @@ -1933,19 +1933,19 @@ "context": null, "code": "const a=new ICalAttendee({email:\"mail@example.com\",role:ICalAttendeeRole.NON},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"NON-PARTICIPANT\")>-1)", "err": {}, - "uuid": "5e15099a-530e-48c4-b774-932c84bf2bad", - "parentUUID": "6958fc7a-ed26-4208-87b0-19f9fb57913d", + "uuid": "81996fd6-e081-41d3-b967-cfdedb401ab0", + "parentUUID": "7c26501f-5587-4c82-a89d-bf130d81b610", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "90abc534-e120-422a-b486-978bdea543c2", - "4f0631c4-e216-4b22-8ce6-81f9d8fe32d7", - "2e71ae54-9c81-47d9-85b9-0491d17d3318", - "50e2f073-f048-4e0c-bd25-3d9e0aa7965f", - "5e15099a-530e-48c4-b774-932c84bf2bad" + "684218e2-0bba-4432-b251-b22427a5a148", + "73edd95d-c040-4898-b74f-2aca22cf0b67", + "8f4cffcd-e9e5-46c5-889d-14fd5e37ff27", + "16b3a8e6-552e-4e36-98b9-4a0fdadc41ed", + "81996fd6-e081-41d3-b967-cfdedb401ab0" ], "failures": [], "pending": [], @@ -1956,7 +1956,7 @@ "_timeout": 2000 }, { - "uuid": "63b14d00-6651-49e5-a49f-9a66167a0325", + "uuid": "d5fc5096-0db2-4509-b25b-a302c8c14b2b", "title": "rsvp()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -1976,8 +1976,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.rsvp(null));assert.deepStrictEqual(a,a.rsvp(true))", "err": {}, - "uuid": "997803d3-d471-4f4a-8428-f866eaf9b752", - "parentUUID": "63b14d00-6651-49e5-a49f-9a66167a0325", + "uuid": "504c3667-ca46-44f0-8b22-645a74acef04", + "parentUUID": "d5fc5096-0db2-4509-b25b-a302c8c14b2b", "isHook": false, "skipped": false }, @@ -1994,8 +1994,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));a.rsvp(true);assert.strictEqual(a.rsvp(),true);a.rsvp(false);assert.strictEqual(a.rsvp(),false)", "err": {}, - "uuid": "6f1ddc6a-128a-4941-ab6f-9d116603bfc3", - "parentUUID": "63b14d00-6651-49e5-a49f-9a66167a0325", + "uuid": "8afff519-c3b2-4d1b-802c-e58deb110d12", + "parentUUID": "d5fc5096-0db2-4509-b25b-a302c8c14b2b", "isHook": false, "skipped": false }, @@ -2012,8 +2012,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.strictEqual(a.rsvp(),null);a.rsvp(false);assert.strictEqual(a.rsvp(),false);a.rsvp(null);assert.strictEqual(a.rsvp(),null)", "err": {}, - "uuid": "5963e0a6-c92c-45fa-98c4-16edc57b3784", - "parentUUID": "63b14d00-6651-49e5-a49f-9a66167a0325", + "uuid": "c1c9ba01-51b3-4392-8463-064d3d81de0a", + "parentUUID": "d5fc5096-0db2-4509-b25b-a302c8c14b2b", "isHook": false, "skipped": false }, @@ -2030,18 +2030,18 @@ "context": null, "code": "const a=new ICalAttendee({email:\"mail@example.com\",rsvp:true},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\";RSVP=TRUE\")>-1)", "err": {}, - "uuid": "8e8eb2f1-3e8f-4f29-992d-30e4f70f205c", - "parentUUID": "63b14d00-6651-49e5-a49f-9a66167a0325", + "uuid": "341fd8d4-2124-46a6-993e-aac0b49db8ff", + "parentUUID": "d5fc5096-0db2-4509-b25b-a302c8c14b2b", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "997803d3-d471-4f4a-8428-f866eaf9b752", - "6f1ddc6a-128a-4941-ab6f-9d116603bfc3", - "5963e0a6-c92c-45fa-98c4-16edc57b3784", - "8e8eb2f1-3e8f-4f29-992d-30e4f70f205c" + "504c3667-ca46-44f0-8b22-645a74acef04", + "8afff519-c3b2-4d1b-802c-e58deb110d12", + "c1c9ba01-51b3-4392-8463-064d3d81de0a", + "341fd8d4-2124-46a6-993e-aac0b49db8ff" ], "failures": [], "pending": [], @@ -2052,7 +2052,7 @@ "_timeout": 2000 }, { - "uuid": "64070184-b9f4-4e31-8617-a4c842eebd50", + "uuid": "9ba628b5-9b7f-472e-9782-b4397b082d93", "title": "status()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -2063,7 +2063,7 @@ "title": "setter should return this", "fullTitle": "ical-generator Attendee status() setter should return this", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -2072,8 +2072,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.status(null));assert.deepStrictEqual(a,a.status(ICalAttendeeStatus.ACCEPTED))", "err": {}, - "uuid": "4aa802fc-bb41-4c4f-91f7-a023f6b6fad8", - "parentUUID": "64070184-b9f4-4e31-8617-a4c842eebd50", + "uuid": "82dd1db3-df5e-4cfd-a650-5d7a168a4d89", + "parentUUID": "9ba628b5-9b7f-472e-9782-b4397b082d93", "isHook": false, "skipped": false }, @@ -2090,8 +2090,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.strictEqual(a.status(),null);a.status(ICalAttendeeStatus.ACCEPTED);assert.strictEqual(a.status(),\"ACCEPTED\");a.status(null);assert.strictEqual(a.status(),null)", "err": {}, - "uuid": "1516c5ba-5feb-4960-9868-5ca11a64cb81", - "parentUUID": "64070184-b9f4-4e31-8617-a4c842eebd50", + "uuid": "5055ef55-5448-43fa-bc40-520abf7559a2", + "parentUUID": "9ba628b5-9b7f-472e-9782-b4397b082d93", "isHook": false, "skipped": false }, @@ -2108,8 +2108,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.throws(function(){a.status(\"DRINKING\")},/must be one of the following/)", "err": {}, - "uuid": "d8212915-6c7e-4372-9f33-c6ddf27b3ec4", - "parentUUID": "64070184-b9f4-4e31-8617-a4c842eebd50", + "uuid": "4a655ddd-bb91-4c09-90b4-e9b7a6b52218", + "parentUUID": "9ba628b5-9b7f-472e-9782-b4397b082d93", "isHook": false, "skipped": false }, @@ -2126,8 +2126,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"mail@example.com\",status:ICalAttendeeStatus.DECLINED},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"DECLINED\")>-1)", "err": {}, - "uuid": "039fe73d-0125-4da7-b883-8ea9cfb42519", - "parentUUID": "64070184-b9f4-4e31-8617-a4c842eebd50", + "uuid": "a7d1db48-0e31-4667-b9e4-9fede1519462", + "parentUUID": "9ba628b5-9b7f-472e-9782-b4397b082d93", "isHook": false, "skipped": false }, @@ -2135,7 +2135,7 @@ "title": "should change something too", "fullTitle": "ical-generator Attendee status() should change something too", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -2144,30 +2144,30 @@ "context": null, "code": "const a=new ICalAttendee({email:\"mail@example.com\",status:ICalAttendeeStatus.NEEDSACTION},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"NEEDS-ACTION\")>-1)", "err": {}, - "uuid": "b9e3d836-4d00-4efe-9723-ca774238a39c", - "parentUUID": "64070184-b9f4-4e31-8617-a4c842eebd50", + "uuid": "71b9bde0-df76-4621-8d66-c83fce599278", + "parentUUID": "9ba628b5-9b7f-472e-9782-b4397b082d93", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "4aa802fc-bb41-4c4f-91f7-a023f6b6fad8", - "1516c5ba-5feb-4960-9868-5ca11a64cb81", - "d8212915-6c7e-4372-9f33-c6ddf27b3ec4", - "039fe73d-0125-4da7-b883-8ea9cfb42519", - "b9e3d836-4d00-4efe-9723-ca774238a39c" + "82dd1db3-df5e-4cfd-a650-5d7a168a4d89", + "5055ef55-5448-43fa-bc40-520abf7559a2", + "4a655ddd-bb91-4c09-90b4-e9b7a6b52218", + "a7d1db48-0e31-4667-b9e4-9fede1519462", + "71b9bde0-df76-4621-8d66-c83fce599278" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 2, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "b702371a-5c81-4dc5-942b-c3d8d1bd2c4b", + "uuid": "a61b1523-7c5f-4ba0-8b9c-dee467648007", "title": "type()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -2178,7 +2178,7 @@ "title": "setter should return this", "fullTitle": "ical-generator Attendee type() setter should return this", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -2187,8 +2187,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a.type(null),a);assert.deepStrictEqual(a.type(ICalAttendeeType.INDIVIDUAL),a)", "err": {}, - "uuid": "d0128128-01fa-4a59-b425-15b760586775", - "parentUUID": "b702371a-5c81-4dc5-942b-c3d8d1bd2c4b", + "uuid": "d5ae6c8d-dad6-46cb-91ce-44fa1199be9a", + "parentUUID": "a61b1523-7c5f-4ba0-8b9c-dee467648007", "isHook": false, "skipped": false }, @@ -2205,8 +2205,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.strictEqual(a.type(),null);a.type(ICalAttendeeType.ROOM);assert.strictEqual(a.type(),\"ROOM\");a.type(null);assert.strictEqual(a.type(),null)", "err": {}, - "uuid": "9398f134-2b2d-41f3-8449-74707d336c1d", - "parentUUID": "b702371a-5c81-4dc5-942b-c3d8d1bd2c4b", + "uuid": "be82b3ca-d4bb-4721-a7d8-18c114071324", + "parentUUID": "a61b1523-7c5f-4ba0-8b9c-dee467648007", "isHook": false, "skipped": false }, @@ -2223,8 +2223,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.throws(function(){a.type(\"DRINKING\")},/must be one of the following/)", "err": {}, - "uuid": "49ecdee2-dce1-4cd4-b2e0-a87126507c1a", - "parentUUID": "b702371a-5c81-4dc5-942b-c3d8d1bd2c4b", + "uuid": "c115ba6a-b4ab-4250-9f86-3b820ab07b4a", + "parentUUID": "a61b1523-7c5f-4ba0-8b9c-dee467648007", "isHook": false, "skipped": false }, @@ -2241,29 +2241,29 @@ "context": null, "code": "const a=new ICalAttendee({email:\"mailing-list@example.com\",type:ICalAttendeeType.GROUP},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"GROUP\")>-1)", "err": {}, - "uuid": "60a39802-2bc8-4ec1-b86d-d7fa9ec7d4e0", - "parentUUID": "b702371a-5c81-4dc5-942b-c3d8d1bd2c4b", + "uuid": "ce26b755-6834-49cf-bbcb-4327b6e46b7d", + "parentUUID": "a61b1523-7c5f-4ba0-8b9c-dee467648007", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "d0128128-01fa-4a59-b425-15b760586775", - "9398f134-2b2d-41f3-8449-74707d336c1d", - "49ecdee2-dce1-4cd4-b2e0-a87126507c1a", - "60a39802-2bc8-4ec1-b86d-d7fa9ec7d4e0" + "d5ae6c8d-dad6-46cb-91ce-44fa1199be9a", + "be82b3ca-d4bb-4721-a7d8-18c114071324", + "c115ba6a-b4ab-4250-9f86-3b820ab07b4a", + "ce26b755-6834-49cf-bbcb-4327b6e46b7d" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "71ba6e6a-1057-405b-9da2-c6ebb6688afc", + "uuid": "cddf850d-2a2c-4df5-988e-743ddd3528a4", "title": "delegatedTo()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -2283,8 +2283,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.delegatedTo(null));assert.deepStrictEqual(a,a.delegatedTo(\"foo@example.com\"))", "err": {}, - "uuid": "ff319bf7-ecbe-41b9-9bb3-50214288b25f", - "parentUUID": "71ba6e6a-1057-405b-9da2-c6ebb6688afc", + "uuid": "9cee8148-d317-45b2-bb75-e6bec1aa77bb", + "parentUUID": "cddf850d-2a2c-4df5-988e-743ddd3528a4", "isHook": false, "skipped": false }, @@ -2301,8 +2301,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.strictEqual(a.delegatedTo(),null);a.delegatedTo(\"foo@example.com\");const result=a.delegatedTo();assert.ok(result);assert.strictEqual(result.email(),\"foo@example.com\");a.delegatedTo(null);assert.strictEqual(a.delegatedTo(),null)", "err": {}, - "uuid": "d2f489c5-39d4-465e-a1e3-0af9b98e19ea", - "parentUUID": "71ba6e6a-1057-405b-9da2-c6ebb6688afc", + "uuid": "cfe7e799-9404-40c2-a4a1-2cee5a1dd8e6", + "parentUUID": "cddf850d-2a2c-4df5-988e-743ddd3528a4", "isHook": false, "skipped": false }, @@ -2319,17 +2319,17 @@ "context": null, "code": "const a=new ICalAttendee({email:\"mail@example.com\",delegatedTo:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"foo@example\")>-1)", "err": {}, - "uuid": "cef9207c-a20c-49e7-9a29-697f5339ee0a", - "parentUUID": "71ba6e6a-1057-405b-9da2-c6ebb6688afc", + "uuid": "86f77d46-a16c-479d-b607-307317564a7f", + "parentUUID": "cddf850d-2a2c-4df5-988e-743ddd3528a4", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "ff319bf7-ecbe-41b9-9bb3-50214288b25f", - "d2f489c5-39d4-465e-a1e3-0af9b98e19ea", - "cef9207c-a20c-49e7-9a29-697f5339ee0a" + "9cee8148-d317-45b2-bb75-e6bec1aa77bb", + "cfe7e799-9404-40c2-a4a1-2cee5a1dd8e6", + "86f77d46-a16c-479d-b607-307317564a7f" ], "failures": [], "pending": [], @@ -2340,7 +2340,7 @@ "_timeout": 2000 }, { - "uuid": "0c4c9eae-da8c-4831-b171-4df9266c3947", + "uuid": "e996d702-5716-4455-a1c4-a8f9a1859af9", "title": "delegatedFrom()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -2360,8 +2360,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.delegatedFrom(null));assert.deepStrictEqual(a,a.delegatedFrom(\"foo@example.com\"))", "err": {}, - "uuid": "0cee9b89-3248-4f50-8a00-d4f298ede1b9", - "parentUUID": "0c4c9eae-da8c-4831-b171-4df9266c3947", + "uuid": "0b754f10-156d-4823-afef-7bd3044cb2b4", + "parentUUID": "e996d702-5716-4455-a1c4-a8f9a1859af9", "isHook": false, "skipped": false }, @@ -2378,8 +2378,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.strictEqual(a.delegatedFrom(),null);a.delegatedFrom(\"foo@example.com\");let result=a.delegatedFrom();assert.ok(result);assert.strictEqual(result.email(),\"foo@example.com\");a.delegatedFrom({name:\"Max Mustermann\",email:\"max.mustermann@example.com\"});result=a.delegatedFrom();assert.ok(result);assert.strictEqual(result.name(),\"Max Mustermann\");assert.strictEqual(result.email(),\"max.mustermann@example.com\");a.delegatedFrom(null);assert.strictEqual(a.delegatedFrom(),null)", "err": {}, - "uuid": "1f2f764b-c81b-454e-be31-76c080c2eab0", - "parentUUID": "0c4c9eae-da8c-4831-b171-4df9266c3947", + "uuid": "f6d311ed-41de-4916-a810-2aa0df56a6fc", + "parentUUID": "e996d702-5716-4455-a1c4-a8f9a1859af9", "isHook": false, "skipped": false }, @@ -2396,17 +2396,17 @@ "context": null, "code": "const a=new ICalAttendee({email:\"mail@example.com\",delegatedFrom:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.toString().indexOf(\"foo@example.com\")>-1)", "err": {}, - "uuid": "6d7652b8-935c-4818-9551-c0c3508d1bff", - "parentUUID": "0c4c9eae-da8c-4831-b171-4df9266c3947", + "uuid": "6d1653b6-e641-4370-8501-d2de90dcbc3b", + "parentUUID": "e996d702-5716-4455-a1c4-a8f9a1859af9", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "0cee9b89-3248-4f50-8a00-d4f298ede1b9", - "1f2f764b-c81b-454e-be31-76c080c2eab0", - "6d7652b8-935c-4818-9551-c0c3508d1bff" + "0b754f10-156d-4823-afef-7bd3044cb2b4", + "f6d311ed-41de-4916-a810-2aa0df56a6fc", + "6d1653b6-e641-4370-8501-d2de90dcbc3b" ], "failures": [], "pending": [], @@ -2417,7 +2417,7 @@ "_timeout": 2000 }, { - "uuid": "28c27e72-d4d2-4467-bd70-385831d008d7", + "uuid": "0fd3d92a-8696-48d4-970e-3d4e44f33447", "title": "delegatesTo()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -2437,8 +2437,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.delegatesTo({email:\"mail@example.com\"})instanceof ICalAttendee)", "err": {}, - "uuid": "c4b1203e-8d5e-41bf-8a22-a97b9211b37d", - "parentUUID": "28c27e72-d4d2-4467-bd70-385831d008d7", + "uuid": "14c62e57-a85d-4ae0-a597-4057e1bf9f81", + "parentUUID": "0fd3d92a-8696-48d4-970e-3d4e44f33447", "isHook": false, "skipped": false }, @@ -2455,8 +2455,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const attendee=new ICalAttendee({name:\"Muh\",email:\"muh@example.com\"},event);assert.deepStrictEqual(new ICalAttendee({email:\"foo@example.com\"},event).delegatesTo(attendee),attendee)", "err": {}, - "uuid": "bb563df2-04f2-4772-aa80-28d4d5507930", - "parentUUID": "28c27e72-d4d2-4467-bd70-385831d008d7", + "uuid": "e9cebabb-c959-467a-a080-4a1b3952c59f", + "parentUUID": "0fd3d92a-8696-48d4-970e-3d4e44f33447", "isHook": false, "skipped": false }, @@ -2473,17 +2473,17 @@ "context": null, "code": "const attendee=new ICalAttendee({name:\"Zac\",email:\"zac@example.com\"},new ICalEvent({start:new Date},new ICalCalendar)).delegatesTo({name:\"Cody\",email:\"cody@example.com\"});assert.strictEqual(attendee.name(),\"Cody\")", "err": {}, - "uuid": "97d5b27d-7f5d-4b11-97c6-1d0d326485af", - "parentUUID": "28c27e72-d4d2-4467-bd70-385831d008d7", + "uuid": "6f791e8a-7184-4796-a294-ad9f221a49ab", + "parentUUID": "0fd3d92a-8696-48d4-970e-3d4e44f33447", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "c4b1203e-8d5e-41bf-8a22-a97b9211b37d", - "bb563df2-04f2-4772-aa80-28d4d5507930", - "97d5b27d-7f5d-4b11-97c6-1d0d326485af" + "14c62e57-a85d-4ae0-a597-4057e1bf9f81", + "e9cebabb-c959-467a-a080-4a1b3952c59f", + "6f791e8a-7184-4796-a294-ad9f221a49ab" ], "failures": [], "pending": [], @@ -2494,7 +2494,7 @@ "_timeout": 2000 }, { - "uuid": "a3b969a9-d293-4063-8437-641b8c55e9b9", + "uuid": "b645ad4a-a623-41df-89ec-f3aef6e674e8", "title": "delegatesFrom()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -2514,8 +2514,8 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));assert.ok(a.delegatesFrom({email:\"bar@example.com\"})instanceof ICalAttendee)", "err": {}, - "uuid": "c6ef6dc3-4b52-4758-8896-00d0f7189dde", - "parentUUID": "a3b969a9-d293-4063-8437-641b8c55e9b9", + "uuid": "e42a52c1-0522-427e-b1a0-de11c00fed3f", + "parentUUID": "b645ad4a-a623-41df-89ec-f3aef6e674e8", "isHook": false, "skipped": false }, @@ -2532,8 +2532,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const attendee=new ICalAttendee({name:\"Muh\",email:\"muh@example.com\"},event);assert.deepStrictEqual(new ICalAttendee({email:\"bar@example.com\"},event).delegatesFrom(attendee),attendee)", "err": {}, - "uuid": "6ba693c4-10fd-45fa-aac7-805cd032b0c9", - "parentUUID": "a3b969a9-d293-4063-8437-641b8c55e9b9", + "uuid": "b206b100-8e54-4986-9b9f-d43b79bea3b6", + "parentUUID": "b645ad4a-a623-41df-89ec-f3aef6e674e8", "isHook": false, "skipped": false }, @@ -2550,17 +2550,17 @@ "context": null, "code": "const a=new ICalAttendee({name:\"Zac\",email:\"zac@example.com\"},new ICalEvent({start:new Date},new ICalCalendar)).delegatesFrom({name:\"Cody\",email:\"cody@example.com\"});assert.strictEqual(a.name(),\"Cody\");const b=new ICalAttendee({name:\"Zac\",email:\"zac@example.com\",delegatesFrom:{name:\"Cody\",email:\"cody@example.com\"}},new ICalEvent({start:new Date},new ICalCalendar));assert.strictEqual(b.name(),\"Zac\")", "err": {}, - "uuid": "a380308c-e20a-49d3-9883-37be32b02714", - "parentUUID": "a3b969a9-d293-4063-8437-641b8c55e9b9", + "uuid": "f530eafc-8ae0-4ed6-84ff-52d75bbd9807", + "parentUUID": "b645ad4a-a623-41df-89ec-f3aef6e674e8", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "c6ef6dc3-4b52-4758-8896-00d0f7189dde", - "6ba693c4-10fd-45fa-aac7-805cd032b0c9", - "a380308c-e20a-49d3-9883-37be32b02714" + "e42a52c1-0522-427e-b1a0-de11c00fed3f", + "b206b100-8e54-4986-9b9f-d43b79bea3b6", + "f530eafc-8ae0-4ed6-84ff-52d75bbd9807" ], "failures": [], "pending": [], @@ -2571,7 +2571,7 @@ "_timeout": 2000 }, { - "uuid": "6b3a96ae-ef7c-4ed8-b4fc-863863560e39", + "uuid": "01a15ee8-0d07-42a0-94a3-cc4a6d205fb5", "title": "x()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -2582,7 +2582,7 @@ "title": "works as expected", "fullTitle": "ical-generator Attendee x() works as expected", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -2591,26 +2591,26 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.org\"},new ICalEvent({start:new Date},new ICalCalendar));assert.deepStrictEqual(a,a.x(\"X-NUM-GUESTS\",\"5\"));assert.ok(a.toString().includes(\"ATTENDEE;ROLE=REQ-PARTICIPANT;X-NUM-GUESTS=5:MAILTO:foo@example.org\"))", "err": {}, - "uuid": "57be6685-56da-43b7-9d48-62bd3da0ee02", - "parentUUID": "6b3a96ae-ef7c-4ed8-b4fc-863863560e39", + "uuid": "9cf26b81-bbc1-41da-9bb3-b243cc93bdb5", + "parentUUID": "01a15ee8-0d07-42a0-94a3-cc4a6d205fb5", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "57be6685-56da-43b7-9d48-62bd3da0ee02" + "9cf26b81-bbc1-41da-9bb3-b243cc93bdb5" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "4a54492c-be59-4685-871f-afc490791925", + "uuid": "4ea54336-ae30-4019-b2d3-f3770240746f", "title": "toJSON()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/attendee.ts", "file": "/test/attendee.ts", @@ -2630,8 +2630,8 @@ "context": null, "code": "const a=new ICalAttendee({name:\"Max Mustermann\",email:\"max@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));a.delegatesTo(\"Moritz \");assert.deepStrictEqual(a.toJSON(),{delegatedFrom:null,delegatedTo:\"moritz@example.com\",email:\"max@example.com\",mailto:null,sentBy:null,name:\"Max Mustermann\",role:\"REQ-PARTICIPANT\",rsvp:null,status:\"DELEGATED\",type:null,x:[]})", "err": {}, - "uuid": "f74de8d0-b13d-4dbc-bcf7-00dd8e972750", - "parentUUID": "4a54492c-be59-4685-871f-afc490791925", + "uuid": "476a1993-d441-405b-87d5-76456b461dd3", + "parentUUID": "4ea54336-ae30-4019-b2d3-f3770240746f", "isHook": false, "skipped": false }, @@ -2648,16 +2648,16 @@ "context": null, "code": "const a=new ICalAttendee({email:\"foo@example.com\"},new ICalEvent({start:new Date},new ICalCalendar));new ICalAttendee(a.toJSON(),new ICalEvent({start:new Date},new ICalCalendar))", "err": {}, - "uuid": "ab038f2e-818c-4c99-8b6b-9fbb783ac1ce", - "parentUUID": "4a54492c-be59-4685-871f-afc490791925", + "uuid": "781dd114-44e1-44a8-8f33-8a4675f2ce9f", + "parentUUID": "4ea54336-ae30-4019-b2d3-f3770240746f", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "f74de8d0-b13d-4dbc-bcf7-00dd8e972750", - "ab038f2e-818c-4c99-8b6b-9fbb783ac1ce" + "476a1993-d441-405b-87d5-76456b461dd3", + "781dd114-44e1-44a8-8f33-8a4675f2ce9f" ], "failures": [], "pending": [], @@ -2678,7 +2678,7 @@ "_timeout": 2000 }, { - "uuid": "804c68be-f5c4-439c-85a0-663446a23266", + "uuid": "73224dc8-e941-41d6-8204-3db3bb2e271f", "title": "ical-generator Calendar", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -2687,7 +2687,7 @@ "tests": [], "suites": [ { - "uuid": "84455328-833b-429b-ae56-0084b628c2e4", + "uuid": "0c851f95-6c6e-4ac3-81e5-1eb59eacd9b0", "title": "constructor()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -2698,7 +2698,7 @@ "title": "shoud load json export", "fullTitle": "ical-generator Calendar constructor() shoud load json export", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -2707,26 +2707,26 @@ "context": null, "code": "const data={prodId:\"//sebbo.net//ical-generator//EN\",method:ICalCalendarMethod.PUBLISH,name:\"Test Calendar\",description:\"Hi, I am the description.\",timezone:null,url:\"https://github.com/sebbo2002/ical-generator\",source:\"http://example.com/my/original_source.ical\",scale:null,ttl:null,events:[],x:[]};const cal=new ICalCalendar(data);assert.deepStrictEqual(cal.toJSON(),data)", "err": {}, - "uuid": "2fe1f8d7-ff68-4ace-a393-02ae2322db32", - "parentUUID": "84455328-833b-429b-ae56-0084b628c2e4", + "uuid": "b9a4bb5b-1179-4767-a8bf-2d18ed74847d", + "parentUUID": "0c851f95-6c6e-4ac3-81e5-1eb59eacd9b0", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "2fe1f8d7-ff68-4ace-a393-02ae2322db32" + "b9a4bb5b-1179-4767-a8bf-2d18ed74847d" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "cb56fa0b-f441-43ba-9d5c-462a9c12fbb8", + "uuid": "c0c58779-4bbe-4030-9248-3331dc33e7fa", "title": "prodId()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -2746,8 +2746,8 @@ "context": null, "code": "const cal=new ICalCalendar;cal.prodId(\"//loremipsum.de//ical-tests//EN\");assert.strictEqual(cal.prodId(),\"//loremipsum.de//ical-tests//EN\")", "err": {}, - "uuid": "ef0d78da-3728-495f-a05c-1ad4c59f75cd", - "parentUUID": "cb56fa0b-f441-43ba-9d5c-462a9c12fbb8", + "uuid": "10e0e8e6-2ac3-4e52-b2df-1d63332e7ed6", + "parentUUID": "c0c58779-4bbe-4030-9248-3331dc33e7fa", "isHook": false, "skipped": false }, @@ -2764,8 +2764,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepStrictEqual(cal,cal.prodId(\"//loremipsum.de//ical-tests//EN\"))", "err": {}, - "uuid": "668d3f16-baae-45c9-9972-f85f70262a1f", - "parentUUID": "cb56fa0b-f441-43ba-9d5c-462a9c12fbb8", + "uuid": "bbc5037f-6ee1-4d3b-864c-139d978931fc", + "parentUUID": "c0c58779-4bbe-4030-9248-3331dc33e7fa", "isHook": false, "skipped": false }, @@ -2782,8 +2782,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.throws(function(){cal.prodId(256)},/`prodid`/)", "err": {}, - "uuid": "4cf77999-fb55-444b-b594-d3c8347de6b7", - "parentUUID": "cb56fa0b-f441-43ba-9d5c-462a9c12fbb8", + "uuid": "a654fc7d-5386-492c-bc5c-8e9188bbef2d", + "parentUUID": "c0c58779-4bbe-4030-9248-3331dc33e7fa", "isHook": false, "skipped": false }, @@ -2800,8 +2800,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.throws(function(){cal.prodId({product:\"ical-tests\"})},/`prodid\\.company`/)", "err": {}, - "uuid": "ad0fec02-5424-4649-8f0f-48e59dc7b768", - "parentUUID": "cb56fa0b-f441-43ba-9d5c-462a9c12fbb8", + "uuid": "38dbe867-55c4-4447-a535-8363ac78771c", + "parentUUID": "c0c58779-4bbe-4030-9248-3331dc33e7fa", "isHook": false, "skipped": false }, @@ -2818,8 +2818,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.throws(function(){cal.prodId({company:\"sebbo.net\"})},/`prodid\\.product`/)", "err": {}, - "uuid": "ec0a8980-4209-4e46-ab0d-320aab15d01c", - "parentUUID": "cb56fa0b-f441-43ba-9d5c-462a9c12fbb8", + "uuid": "c59c5f15-157c-4e5e-831d-85d32d85a715", + "parentUUID": "c0c58779-4bbe-4030-9248-3331dc33e7fa", "isHook": false, "skipped": false }, @@ -2836,8 +2836,8 @@ "context": null, "code": "const cal=new ICalCalendar().prodId({company:\"loremipsum.com\",product:\"awesome-unit-tests\"});assert.strictEqual(cal.prodId(),\"//loremipsum.com//awesome-unit-tests//EN\")", "err": {}, - "uuid": "d0e549cc-9224-4922-a767-83d8f3a6e2b6", - "parentUUID": "cb56fa0b-f441-43ba-9d5c-462a9c12fbb8", + "uuid": "a7b0ecb0-f2a9-4b33-8b51-517eaf16c9eb", + "parentUUID": "c0c58779-4bbe-4030-9248-3331dc33e7fa", "isHook": false, "skipped": false }, @@ -2854,21 +2854,21 @@ "context": null, "code": "const cal=new ICalCalendar().prodId({company:\"loremipsum.com\",product:\"awesome-unit-tests\",language:\"DE\"});assert.strictEqual(cal.prodId(),\"//loremipsum.com//awesome-unit-tests//DE\")", "err": {}, - "uuid": "d8443327-a257-4d98-8092-6f47ff15db7c", - "parentUUID": "cb56fa0b-f441-43ba-9d5c-462a9c12fbb8", + "uuid": "644e689e-69fe-44d6-adf1-553680d20416", + "parentUUID": "c0c58779-4bbe-4030-9248-3331dc33e7fa", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "ef0d78da-3728-495f-a05c-1ad4c59f75cd", - "668d3f16-baae-45c9-9972-f85f70262a1f", - "4cf77999-fb55-444b-b594-d3c8347de6b7", - "ad0fec02-5424-4649-8f0f-48e59dc7b768", - "ec0a8980-4209-4e46-ab0d-320aab15d01c", - "d0e549cc-9224-4922-a767-83d8f3a6e2b6", - "d8443327-a257-4d98-8092-6f47ff15db7c" + "10e0e8e6-2ac3-4e52-b2df-1d63332e7ed6", + "bbc5037f-6ee1-4d3b-864c-139d978931fc", + "a654fc7d-5386-492c-bc5c-8e9188bbef2d", + "38dbe867-55c4-4447-a535-8363ac78771c", + "c59c5f15-157c-4e5e-831d-85d32d85a715", + "a7b0ecb0-f2a9-4b33-8b51-517eaf16c9eb", + "644e689e-69fe-44d6-adf1-553680d20416" ], "failures": [], "pending": [], @@ -2879,7 +2879,7 @@ "_timeout": 2000 }, { - "uuid": "1c78da7c-9e92-4a9c-b384-a71e3033bad1", + "uuid": "669a0691-3ede-476b-9f7a-9b65327ec3fc", "title": "method()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -2890,7 +2890,7 @@ "title": "setter should return this", "fullTitle": "ical-generator Calendar method() setter should return this", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -2899,8 +2899,8 @@ "context": null, "code": "const c=new ICalCalendar;assert.deepStrictEqual(c,c.method(null),\"method(null)\");assert.deepStrictEqual(c,c.method(ICalCalendarMethod.PUBLISH),\"method(enum)\")", "err": {}, - "uuid": "7e5f207b-e919-4cc1-bb15-402e0e840163", - "parentUUID": "1c78da7c-9e92-4a9c-b384-a71e3033bad1", + "uuid": "5ac02865-ffcd-4f0b-9be8-d8b12f14243e", + "parentUUID": "669a0691-3ede-476b-9f7a-9b65327ec3fc", "isHook": false, "skipped": false }, @@ -2917,8 +2917,8 @@ "context": null, "code": "const c=new ICalCalendar;assert.strictEqual(c.method(),null);c.method(null);assert.strictEqual(c.method(),null);c.method(ICalCalendarMethod.PUBLISH);assert.strictEqual(c.method(),\"PUBLISH\");c.method(null);assert.strictEqual(c.method(),null)", "err": {}, - "uuid": "69b01043-4f80-4d92-9045-e4034836d3aa", - "parentUUID": "1c78da7c-9e92-4a9c-b384-a71e3033bad1", + "uuid": "d657f5be-4550-403d-93d5-2f76c8a45b29", + "parentUUID": "669a0691-3ede-476b-9f7a-9b65327ec3fc", "isHook": false, "skipped": false }, @@ -2935,8 +2935,8 @@ "context": null, "code": "const c=new ICalCalendar;assert.throws(function(){c.method(\"KICK ASS\")},/Input must be one of the following: PUBLISH, REQUEST, REPLY, ADD, CANCEL, REFRESH, COUNTER, DECLINECOUNTER/)", "err": {}, - "uuid": "c05e59d9-70cb-45c4-be51-5dbdd6ba8880", - "parentUUID": "1c78da7c-9e92-4a9c-b384-a71e3033bad1", + "uuid": "78cf5374-8269-4c8a-a78f-d370dc1507bb", + "parentUUID": "669a0691-3ede-476b-9f7a-9b65327ec3fc", "isHook": false, "skipped": false }, @@ -2953,29 +2953,29 @@ "context": null, "code": "const c=new ICalCalendar({method:ICalCalendarMethod.PUBLISH});assert.strictEqual(c.method(),\"PUBLISH\");c.method(ICalCalendarMethod.ADD);assert.strictEqual(c.method(),\"ADD\")", "err": {}, - "uuid": "3f505a39-c190-4fdb-8c6f-6f1dd5abd2d1", - "parentUUID": "1c78da7c-9e92-4a9c-b384-a71e3033bad1", + "uuid": "d0088475-58d3-4ee8-9c38-7a1faa9a58f4", + "parentUUID": "669a0691-3ede-476b-9f7a-9b65327ec3fc", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "7e5f207b-e919-4cc1-bb15-402e0e840163", - "69b01043-4f80-4d92-9045-e4034836d3aa", - "c05e59d9-70cb-45c4-be51-5dbdd6ba8880", - "3f505a39-c190-4fdb-8c6f-6f1dd5abd2d1" + "5ac02865-ffcd-4f0b-9be8-d8b12f14243e", + "d657f5be-4550-403d-93d5-2f76c8a45b29", + "78cf5374-8269-4c8a-a78f-d370dc1507bb", + "d0088475-58d3-4ee8-9c38-7a1faa9a58f4" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "2c8aea42-5afb-4ba5-aaae-73990560e331", + "uuid": "2bcd8802-2c8c-4620-9129-d99dae5a8b13", "title": "name()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -2995,8 +2995,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepStrictEqual(cal,cal.name(null));assert.deepStrictEqual(cal,cal.name(\"Testevents\"))", "err": {}, - "uuid": "622ddc2c-cbb0-4824-b109-8c0892fa1483", - "parentUUID": "2c8aea42-5afb-4ba5-aaae-73990560e331", + "uuid": "926136c4-49dd-4f42-ae1b-1a0a94b9d06b", + "parentUUID": "2bcd8802-2c8c-4620-9129-d99dae5a8b13", "isHook": false, "skipped": false }, @@ -3004,7 +3004,7 @@ "title": "getter should return value", "fullTitle": "ical-generator Calendar name() getter should return value", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -3013,8 +3013,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.strictEqual(cal.name(),null);cal.name(\"Testevents\");assert.strictEqual(cal.name(),\"Testevents\");cal.name(null);assert.strictEqual(cal.name(),null)", "err": {}, - "uuid": "990bf6e7-006c-4def-b3a5-d573a951d3f6", - "parentUUID": "2c8aea42-5afb-4ba5-aaae-73990560e331", + "uuid": "ccfca36e-e5cf-4ee8-85f6-c8402beba933", + "parentUUID": "2bcd8802-2c8c-4620-9129-d99dae5a8b13", "isHook": false, "skipped": false }, @@ -3031,28 +3031,28 @@ "context": null, "code": "const cal=new ICalCalendar().name(\"Testevents\");cal.createEvent({start:new Date,summary:\"Example Event\"});assert.strictEqual(cal.name(),\"Testevents\")", "err": {}, - "uuid": "ef451bcb-c660-4d83-8297-adf8ad544772", - "parentUUID": "2c8aea42-5afb-4ba5-aaae-73990560e331", + "uuid": "d0e31bf0-7b2c-450f-a49e-314bda129864", + "parentUUID": "2bcd8802-2c8c-4620-9129-d99dae5a8b13", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "622ddc2c-cbb0-4824-b109-8c0892fa1483", - "990bf6e7-006c-4def-b3a5-d573a951d3f6", - "ef451bcb-c660-4d83-8297-adf8ad544772" + "926136c4-49dd-4f42-ae1b-1a0a94b9d06b", + "ccfca36e-e5cf-4ee8-85f6-c8402beba933", + "d0e31bf0-7b2c-450f-a49e-314bda129864" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "8ec30564-e993-4014-811f-e200840f0314", + "uuid": "d5c00039-8621-4e83-b34c-aa608e4a5a6b", "title": "description()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3072,8 +3072,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepStrictEqual(cal,cal.description(null));assert.deepStrictEqual(cal,cal.description(\"Testbeschreibung\"))", "err": {}, - "uuid": "e86ea6e3-2cd5-47f1-b945-ddf4ab50543d", - "parentUUID": "8ec30564-e993-4014-811f-e200840f0314", + "uuid": "cb422fa9-7082-45e3-ab91-a20e0eb1cedc", + "parentUUID": "d5c00039-8621-4e83-b34c-aa608e4a5a6b", "isHook": false, "skipped": false }, @@ -3081,7 +3081,7 @@ "title": "getter should return value", "fullTitle": "ical-generator Calendar description() getter should return value", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -3090,8 +3090,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.strictEqual(cal.description(),null);cal.description(\"Testbeschreibung\");assert.strictEqual(cal.description(),\"Testbeschreibung\");cal.description(null);assert.strictEqual(cal.description(),null)", "err": {}, - "uuid": "960f5ff6-e802-4724-858d-ce159030468a", - "parentUUID": "8ec30564-e993-4014-811f-e200840f0314", + "uuid": "5e57fb1d-9f38-4a98-8832-f7186b48edfa", + "parentUUID": "d5c00039-8621-4e83-b34c-aa608e4a5a6b", "isHook": false, "skipped": false }, @@ -3108,28 +3108,28 @@ "context": null, "code": "const cal=new ICalCalendar().description(\"Testbeschreibung\");cal.createEvent({start:new Date,summary:\"Example Event\"});assert.ok(cal.description(),\"Testbeschreibung\")", "err": {}, - "uuid": "95580ab7-d10a-4da2-87b2-a9e16bfcf609", - "parentUUID": "8ec30564-e993-4014-811f-e200840f0314", + "uuid": "9ff21dc5-635a-4db7-b229-484c9e0e9e39", + "parentUUID": "d5c00039-8621-4e83-b34c-aa608e4a5a6b", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "e86ea6e3-2cd5-47f1-b945-ddf4ab50543d", - "960f5ff6-e802-4724-858d-ce159030468a", - "95580ab7-d10a-4da2-87b2-a9e16bfcf609" + "cb422fa9-7082-45e3-ab91-a20e0eb1cedc", + "5e57fb1d-9f38-4a98-8832-f7186b48edfa", + "9ff21dc5-635a-4db7-b229-484c9e0e9e39" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "85bc90f0-8fa1-49a6-8645-9329976b869c", + "uuid": "f6bc91f5-f35a-40ad-8b5d-34e424e3fc8d", "title": "timezone()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3149,8 +3149,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepStrictEqual(cal,cal.timezone(\"Europe/Berlin\"));assert.deepStrictEqual(cal,cal.timezone(null));assert.deepStrictEqual(cal,cal.timezone({name:\"Europe/Berlin\",generator:getVtimezoneComponent}))", "err": {}, - "uuid": "09adfe6d-b04c-4559-b3d6-a63c22e7be5e", - "parentUUID": "85bc90f0-8fa1-49a6-8645-9329976b869c", + "uuid": "34fbfe59-15c9-4f2f-946c-d146036e72a2", + "parentUUID": "f6bc91f5-f35a-40ad-8b5d-34e424e3fc8d", "isHook": false, "skipped": false }, @@ -3167,8 +3167,8 @@ "context": null, "code": "const cal=new ICalCalendar().timezone(\"Europe/Berlin\");assert.strictEqual(cal.timezone(),\"Europe/Berlin\");cal.timezone(null);assert.strictEqual(cal.timezone(),null);cal.timezone({name:\"Europe/Berlin\"});assert.strictEqual(cal.timezone(),\"Europe/Berlin\")", "err": {}, - "uuid": "44ddb9c1-33ac-45c8-a453-a73b299ddf2a", - "parentUUID": "85bc90f0-8fa1-49a6-8645-9329976b869c", + "uuid": "2b670b51-5269-4e03-ab28-e12071226198", + "parentUUID": "f6bc91f5-f35a-40ad-8b5d-34e424e3fc8d", "isHook": false, "skipped": false }, @@ -3185,17 +3185,17 @@ "context": null, "code": "const cal=new ICalCalendar().timezone(\"Europe/Berlin\");assert.strictEqual(cal.timezone(),\"Europe/Berlin\");cal.timezone(\"UTC\");assert.strictEqual(cal.timezone(),null)", "err": {}, - "uuid": "212e2e56-92df-4db6-a630-0234658e0144", - "parentUUID": "85bc90f0-8fa1-49a6-8645-9329976b869c", + "uuid": "aad5186a-abd2-4ecf-8894-1d3da0ac0f35", + "parentUUID": "f6bc91f5-f35a-40ad-8b5d-34e424e3fc8d", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "09adfe6d-b04c-4559-b3d6-a63c22e7be5e", - "44ddb9c1-33ac-45c8-a453-a73b299ddf2a", - "212e2e56-92df-4db6-a630-0234658e0144" + "34fbfe59-15c9-4f2f-946c-d146036e72a2", + "2b670b51-5269-4e03-ab28-e12071226198", + "aad5186a-abd2-4ecf-8894-1d3da0ac0f35" ], "failures": [], "pending": [], @@ -3206,7 +3206,7 @@ "_timeout": 2000 }, { - "uuid": "82193cef-b97d-4ac8-8b9a-813ae1810e17", + "uuid": "a3a482bc-8846-4c97-9bb4-ecc5b2c58e59", "title": "ttl()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3226,8 +3226,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepStrictEqual(cal.ttl(60*60*24),cal);assert.deepStrictEqual(cal.ttl(moment.duration(2,\"days\")),cal);assert.deepStrictEqual(cal.ttl(null),cal)", "err": {}, - "uuid": "2addcf38-b922-4ab0-9919-137f7b854238", - "parentUUID": "82193cef-b97d-4ac8-8b9a-813ae1810e17", + "uuid": "1679085e-da24-40da-b108-c64bc47dab05", + "parentUUID": "a3a482bc-8846-4c97-9bb4-ecc5b2c58e59", "isHook": false, "skipped": false }, @@ -3244,8 +3244,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.strictEqual(cal.ttl(),null);cal.ttl(86400);assert.strictEqual(cal.ttl(),86400)", "err": {}, - "uuid": "b9536d40-a777-4490-99fb-c088fcce3914", - "parentUUID": "82193cef-b97d-4ac8-8b9a-813ae1810e17", + "uuid": "aa37e265-7912-4124-91fe-7eca6f7aef9b", + "parentUUID": "a3a482bc-8846-4c97-9bb4-ecc5b2c58e59", "isHook": false, "skipped": false }, @@ -3262,17 +3262,17 @@ "context": null, "code": "const cal=new ICalCalendar().ttl(86400);assert.strictEqual(cal.ttl(),86400)", "err": {}, - "uuid": "bcf90186-d8ef-4109-bf58-58a89c451cd3", - "parentUUID": "82193cef-b97d-4ac8-8b9a-813ae1810e17", + "uuid": "25455a7c-c953-4986-bedd-ed33bd9ea495", + "parentUUID": "a3a482bc-8846-4c97-9bb4-ecc5b2c58e59", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "2addcf38-b922-4ab0-9919-137f7b854238", - "b9536d40-a777-4490-99fb-c088fcce3914", - "bcf90186-d8ef-4109-bf58-58a89c451cd3" + "1679085e-da24-40da-b108-c64bc47dab05", + "aa37e265-7912-4124-91fe-7eca6f7aef9b", + "25455a7c-c953-4986-bedd-ed33bd9ea495" ], "failures": [], "pending": [], @@ -3283,7 +3283,7 @@ "_timeout": 2000 }, { - "uuid": "3ca6f277-b625-4f6b-b026-11e84ca7af0c", + "uuid": "3e57814d-abe6-4029-b2f8-00d7aa56d8a2", "title": "source()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3303,8 +3303,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepStrictEqual(cal,cal.source(\"http://example.com/my/original_source.ical\"))", "err": {}, - "uuid": "bb6fa71a-bf18-4c2d-b757-61f9aff53c7a", - "parentUUID": "3ca6f277-b625-4f6b-b026-11e84ca7af0c", + "uuid": "8adfc993-fc32-47e9-9532-c0de2bbb9ef9", + "parentUUID": "3e57814d-abe6-4029-b2f8-00d7aa56d8a2", "isHook": false, "skipped": false }, @@ -3321,16 +3321,16 @@ "context": null, "code": "const cal=new ICalCalendar;assert.strictEqual(cal.source(),null);cal.source(\"http://example.com/my/original_source.ical\");assert.strictEqual(cal.source(),\"http://example.com/my/original_source.ical\");cal.url(null);assert.strictEqual(cal.url(),null)", "err": {}, - "uuid": "fdeb716c-1e66-44e6-b6d5-70a21f6f4258", - "parentUUID": "3ca6f277-b625-4f6b-b026-11e84ca7af0c", + "uuid": "74066e03-aed0-4f74-a2aa-603a3ff28c4d", + "parentUUID": "3e57814d-abe6-4029-b2f8-00d7aa56d8a2", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "bb6fa71a-bf18-4c2d-b757-61f9aff53c7a", - "fdeb716c-1e66-44e6-b6d5-70a21f6f4258" + "8adfc993-fc32-47e9-9532-c0de2bbb9ef9", + "74066e03-aed0-4f74-a2aa-603a3ff28c4d" ], "failures": [], "pending": [], @@ -3341,7 +3341,7 @@ "_timeout": 2000 }, { - "uuid": "038a3d8d-5c63-478b-a8f0-46bef2221f24", + "uuid": "27bb183d-b05c-4901-b0b2-b258f3bf9b4f", "title": "url()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3361,8 +3361,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepStrictEqual(cal,cal.url(\"https://example.com/calendar.ical\"))", "err": {}, - "uuid": "99e7169e-aad6-466f-8683-48d8aeb1ba67", - "parentUUID": "038a3d8d-5c63-478b-a8f0-46bef2221f24", + "uuid": "7b49a0b9-282a-43be-a183-6dbeeec7c61e", + "parentUUID": "27bb183d-b05c-4901-b0b2-b258f3bf9b4f", "isHook": false, "skipped": false }, @@ -3379,8 +3379,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.strictEqual(cal.url(),null);cal.url(\"https://example.com/calendar.ical\");assert.strictEqual(cal.url(),\"https://example.com/calendar.ical\");cal.url(null);assert.strictEqual(cal.url(),null)", "err": {}, - "uuid": "19f3aca0-bb35-4780-a33f-f3fa31ae59fb", - "parentUUID": "038a3d8d-5c63-478b-a8f0-46bef2221f24", + "uuid": "859a331d-0eaf-4594-bab5-2a0a47ead3d5", + "parentUUID": "27bb183d-b05c-4901-b0b2-b258f3bf9b4f", "isHook": false, "skipped": false }, @@ -3397,17 +3397,17 @@ "context": null, "code": "const cal=new ICalCalendar().url(\"https://example.com/calendar.ical\");cal.createEvent({start:new Date,end:new Date(new Date().getTime()+36e5),summary:\"Example Event\"});assert.ok(cal.url(),\"https://example.com/calendar.ical\")", "err": {}, - "uuid": "7bab630a-f965-4b17-9977-54b6e71b0fc4", - "parentUUID": "038a3d8d-5c63-478b-a8f0-46bef2221f24", + "uuid": "af91c270-fda5-4865-807c-8619b5f1b65c", + "parentUUID": "27bb183d-b05c-4901-b0b2-b258f3bf9b4f", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "99e7169e-aad6-466f-8683-48d8aeb1ba67", - "19f3aca0-bb35-4780-a33f-f3fa31ae59fb", - "7bab630a-f965-4b17-9977-54b6e71b0fc4" + "7b49a0b9-282a-43be-a183-6dbeeec7c61e", + "859a331d-0eaf-4594-bab5-2a0a47ead3d5", + "af91c270-fda5-4865-807c-8619b5f1b65c" ], "failures": [], "pending": [], @@ -3418,7 +3418,7 @@ "_timeout": 2000 }, { - "uuid": "5f5482f7-afeb-4fbf-9668-b8e1aa791531", + "uuid": "f298defc-c588-48e6-8e10-6ed65b82a067", "title": "scale()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3429,7 +3429,7 @@ "title": "setter should return this", "fullTitle": "ical-generator Calendar scale() setter should return this", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -3438,8 +3438,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepStrictEqual(cal,cal.scale(\"gregorian\"))", "err": {}, - "uuid": "5d24001a-d2a9-4bad-a0db-9ed9d6d08926", - "parentUUID": "5f5482f7-afeb-4fbf-9668-b8e1aa791531", + "uuid": "ba5ab599-8509-41f2-b414-1cff10d1d308", + "parentUUID": "f298defc-c588-48e6-8e10-6ed65b82a067", "isHook": false, "skipped": false }, @@ -3456,8 +3456,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.strictEqual(cal.scale(),null);cal.scale(\"GREGORIAN\");assert.strictEqual(cal.scale(),\"GREGORIAN\");cal.scale(null);assert.strictEqual(cal.scale(),null)", "err": {}, - "uuid": "e22ebe81-28ca-4021-89d2-4ec5257b6732", - "parentUUID": "5f5482f7-afeb-4fbf-9668-b8e1aa791531", + "uuid": "a0543e48-197e-4b7e-93ce-fb017d626a76", + "parentUUID": "f298defc-c588-48e6-8e10-6ed65b82a067", "isHook": false, "skipped": false }, @@ -3474,28 +3474,28 @@ "context": null, "code": "const cal=new ICalCalendar().scale(\"gregorian\");cal.createEvent({start:new Date,end:new Date(new Date().getTime()+36e5),summary:\"Example Event\"});assert.ok(cal.scale(),\"GREGORIAN\")", "err": {}, - "uuid": "048d7ee5-7d6e-41f3-9497-9f16ee7c14ff", - "parentUUID": "5f5482f7-afeb-4fbf-9668-b8e1aa791531", + "uuid": "e762a96f-542a-4121-87d9-de73c4f40b16", + "parentUUID": "f298defc-c588-48e6-8e10-6ed65b82a067", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "5d24001a-d2a9-4bad-a0db-9ed9d6d08926", - "e22ebe81-28ca-4021-89d2-4ec5257b6732", - "048d7ee5-7d6e-41f3-9497-9f16ee7c14ff" + "ba5ab599-8509-41f2-b414-1cff10d1d308", + "a0543e48-197e-4b7e-93ce-fb017d626a76", + "e762a96f-542a-4121-87d9-de73c4f40b16" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "e1a6eb68-6308-4475-9421-6b033155f5c1", + "uuid": "8b7e47cb-44d0-45af-84f9-803121e32660", "title": "createEvent()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3515,8 +3515,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.ok(cal.createEvent({start:new Date})instanceof ICalEvent)", "err": {}, - "uuid": "ba74a677-8694-4857-8062-e7859865011f", - "parentUUID": "e1a6eb68-6308-4475-9421-6b033155f5c1", + "uuid": "24e24e2c-a7c8-4bf4-9521-1c9c3ccf9aef", + "parentUUID": "8b7e47cb-44d0-45af-84f9-803121e32660", "isHook": false, "skipped": false }, @@ -3533,8 +3533,8 @@ "context": null, "code": "const cal=new ICalCalendar;const event=cal.createEvent({start:new Date,summary:\"Patch-Day\"});assert.strictEqual(event.summary(),\"Patch-Day\")", "err": {}, - "uuid": "f1af0730-7e80-4dd3-9437-54ab24396de8", - "parentUUID": "e1a6eb68-6308-4475-9421-6b033155f5c1", + "uuid": "a34d474a-1c99-4c16-8b32-1f377ae88330", + "parentUUID": "8b7e47cb-44d0-45af-84f9-803121e32660", "isHook": false, "skipped": false }, @@ -3542,7 +3542,7 @@ "title": "should not require optional parameters", "fullTitle": "ical-generator Calendar createEvent() should not require optional parameters", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -3551,28 +3551,28 @@ "context": null, "code": "assert.doesNotThrow(function(){new ICalCalendar().createEvent({start:new Date,summary:\"Patch-Day\"})},Error)", "err": {}, - "uuid": "08d23910-1e54-4b23-a5b6-1799eace8441", - "parentUUID": "e1a6eb68-6308-4475-9421-6b033155f5c1", + "uuid": "3c902c0f-8354-454b-8783-d5ee6bf02c75", + "parentUUID": "8b7e47cb-44d0-45af-84f9-803121e32660", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "ba74a677-8694-4857-8062-e7859865011f", - "f1af0730-7e80-4dd3-9437-54ab24396de8", - "08d23910-1e54-4b23-a5b6-1799eace8441" + "24e24e2c-a7c8-4bf4-9521-1c9c3ccf9aef", + "a34d474a-1c99-4c16-8b32-1f377ae88330", + "3c902c0f-8354-454b-8783-d5ee6bf02c75" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "15d80e30-2848-48ca-9c5b-6b196b640884", + "uuid": "a8c5ab96-f261-4c06-a349-baa96dbb1b9a", "title": "events()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3592,8 +3592,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.strictEqual(cal.events().length,0);const event=cal.createEvent({start:new Date});assert.strictEqual(cal.events().length,1);assert.deepStrictEqual(cal.events()[0],event)", "err": {}, - "uuid": "e5126251-848e-42b6-95f4-84fd3224257a", - "parentUUID": "15d80e30-2848-48ca-9c5b-6b196b640884", + "uuid": "b830df47-598e-471e-b7ba-8cf7b468d2df", + "parentUUID": "a8c5ab96-f261-4c06-a349-baa96dbb1b9a", "isHook": false, "skipped": false }, @@ -3610,16 +3610,16 @@ "context": null, "code": "const cal=new ICalCalendar;assert.strictEqual(cal.length(),0);const cal2=cal.events([{start:new Date,summary:\"Event A\"},{start:new Date,summary:\"Event B\"}]);assert.strictEqual(cal.length(),2);assert.deepStrictEqual(cal2,cal)", "err": {}, - "uuid": "08515d58-64d1-4737-967b-3db0cbc2bd7d", - "parentUUID": "15d80e30-2848-48ca-9c5b-6b196b640884", + "uuid": "346fae86-7555-4bbd-b56a-247592ca7f30", + "parentUUID": "a8c5ab96-f261-4c06-a349-baa96dbb1b9a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "e5126251-848e-42b6-95f4-84fd3224257a", - "08515d58-64d1-4737-967b-3db0cbc2bd7d" + "b830df47-598e-471e-b7ba-8cf7b468d2df", + "346fae86-7555-4bbd-b56a-247592ca7f30" ], "failures": [], "pending": [], @@ -3630,7 +3630,7 @@ "_timeout": 2000 }, { - "uuid": "630ec8f5-e8f9-43de-ad9e-eb348824da9a", + "uuid": "cc6cd815-4edc-41c6-8b85-0bab72f3df62", "title": "clear()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3650,15 +3650,15 @@ "context": null, "code": "const cal=new ICalCalendar;cal.createEvent({start:new Date});assert.strictEqual(cal.events().length,1);assert.deepStrictEqual(cal.clear(),cal);assert.strictEqual(cal.events().length,0)", "err": {}, - "uuid": "852934f8-037f-4ef7-ac0c-6521ec97b8d8", - "parentUUID": "630ec8f5-e8f9-43de-ad9e-eb348824da9a", + "uuid": "f8c5e58e-3a81-468b-bd9f-9dd99a134a8c", + "parentUUID": "cc6cd815-4edc-41c6-8b85-0bab72f3df62", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "852934f8-037f-4ef7-ac0c-6521ec97b8d8" + "f8c5e58e-3a81-468b-bd9f-9dd99a134a8c" ], "failures": [], "pending": [], @@ -3669,7 +3669,7 @@ "_timeout": 2000 }, { - "uuid": "c8947c7b-f077-40f0-80e1-12cf12d16ff2", + "uuid": "d4d2a7cd-b2f3-4601-a678-18d980027e9a", "title": "x()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3689,8 +3689,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepStrictEqual(cal,cal.x(\"X-FOO\",\"bar\"))", "err": {}, - "uuid": "37cda88e-fcdf-4d70-be5d-05d1507d7dc3", - "parentUUID": "c8947c7b-f077-40f0-80e1-12cf12d16ff2", + "uuid": "932967ca-7332-4d67-8c0f-633cdcc6b00c", + "parentUUID": "d4d2a7cd-b2f3-4601-a678-18d980027e9a", "isHook": false, "skipped": false }, @@ -3698,7 +3698,7 @@ "title": "setter should work with key and value strings", "fullTitle": "ical-generator Calendar x() setter should work with key and value strings", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -3707,8 +3707,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepStrictEqual(cal,cal.x(\"X-FOO\",\"bar\"));assert.deepEqual(cal.x(),[{key:\"X-FOO\",value:\"bar\"}]);assert.deepStrictEqual(cal,cal.x(\"X-LOREM\",\"ipsum\"));assert.deepEqual(cal.x(),[{key:\"X-FOO\",value:\"bar\"},{key:\"X-LOREM\",value:\"ipsum\"}]);assert.throws(()=>{cal.x(\"LOREM\",\"ipsum\")});assert.throws(()=>{cal.x(\"X-LOREM\",1337)});assert.throws(()=>{cal.x(5,\"ipsum\")})", "err": {}, - "uuid": "ca956c67-86e8-4c8e-9174-7aa2de0e391f", - "parentUUID": "c8947c7b-f077-40f0-80e1-12cf12d16ff2", + "uuid": "61c3f1e6-0600-42ac-8f31-374808beb56e", + "parentUUID": "d4d2a7cd-b2f3-4601-a678-18d980027e9a", "isHook": false, "skipped": false }, @@ -3725,8 +3725,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepStrictEqual(cal,cal.x([{key:\"X-FOO\",value:\"bar\"}]));assert.deepEqual(cal.x(),[{key:\"X-FOO\",value:\"bar\"}]);assert.deepStrictEqual(cal,cal.x([{key:\"X-LOREM\",value:\"ipsum\"}]));assert.deepEqual(cal.x(),[{key:\"X-LOREM\",value:\"ipsum\"}]);assert.throws(()=>{cal.x([{key:\"LOREM\",value:\"ipsum\"}])});assert.throws(()=>{cal.x([{key:\"X-LOREM\",value:1337}])});assert.throws(()=>{cal.x([{key:5,value:\"ipsum\"}])})", "err": {}, - "uuid": "68cd846b-ef3c-4704-afcc-4ff018c438e8", - "parentUUID": "c8947c7b-f077-40f0-80e1-12cf12d16ff2", + "uuid": "ced699be-f406-4fd2-b566-de5739f89260", + "parentUUID": "d4d2a7cd-b2f3-4601-a678-18d980027e9a", "isHook": false, "skipped": false }, @@ -3734,7 +3734,7 @@ "title": "setter should work with key and value object", "fullTitle": "ical-generator Calendar x() setter should work with key and value object", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -3743,8 +3743,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepStrictEqual(cal,cal.x({\"X-FOO\":\"bar\"}));assert.deepEqual(cal.x(),[{key:\"X-FOO\",value:\"bar\"}]);assert.deepStrictEqual(cal,cal.x({\"X-LOREM\":\"ipsum\"}));assert.deepEqual(cal.x(),[{key:\"X-LOREM\",value:\"ipsum\"}]);assert.throws(()=>{cal.x({\"LOREM\":\"ipsum\"})});assert.throws(()=>{cal.x({\"X-LOREM\":1337})});assert.throws(()=>{cal.x({5:\"ipsum\"})})", "err": {}, - "uuid": "45de65e4-f942-40ca-8e95-16ced4725bec", - "parentUUID": "c8947c7b-f077-40f0-80e1-12cf12d16ff2", + "uuid": "e91bd368-db22-4391-a4d5-9208a8f6ab26", + "parentUUID": "d4d2a7cd-b2f3-4601-a678-18d980027e9a", "isHook": false, "skipped": false }, @@ -3761,8 +3761,8 @@ "context": null, "code": "const cal=new ICalCalendar;assert.deepEqual(cal.x(),[]);cal.x(\"X-FOO\",\"BAR\");assert.deepEqual(cal.x(),[{key:\"X-FOO\",value:\"BAR\"}]);cal.x({});assert.deepEqual(cal.x().length,0)", "err": {}, - "uuid": "adebe082-d445-450b-8c59-f50af6b771e3", - "parentUUID": "c8947c7b-f077-40f0-80e1-12cf12d16ff2", + "uuid": "53c1b2f8-02f0-4e5a-9341-c2fb4acf30f8", + "parentUUID": "d4d2a7cd-b2f3-4601-a678-18d980027e9a", "isHook": false, "skipped": false }, @@ -3779,31 +3779,31 @@ "context": null, "code": "const cal=new ICalCalendar().x(\"X-FOO\",\"BAR\");cal.createEvent({start:new Date,end:new Date(new Date().getTime()+36e5),summary:\"Example Event\"});assert.ok(cal.toString().includes(\"X-FOO\"))", "err": {}, - "uuid": "42766c68-bef4-4e46-b85f-a923395655db", - "parentUUID": "c8947c7b-f077-40f0-80e1-12cf12d16ff2", + "uuid": "67408384-f59d-4a82-97c5-c122e7413b9b", + "parentUUID": "d4d2a7cd-b2f3-4601-a678-18d980027e9a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "37cda88e-fcdf-4d70-be5d-05d1507d7dc3", - "ca956c67-86e8-4c8e-9174-7aa2de0e391f", - "68cd846b-ef3c-4704-afcc-4ff018c438e8", - "45de65e4-f942-40ca-8e95-16ced4725bec", - "adebe082-d445-450b-8c59-f50af6b771e3", - "42766c68-bef4-4e46-b85f-a923395655db" + "932967ca-7332-4d67-8c0f-633cdcc6b00c", + "61c3f1e6-0600-42ac-8f31-374808beb56e", + "ced699be-f406-4fd2-b566-de5739f89260", + "e91bd368-db22-4391-a4d5-9208a8f6ab26", + "53c1b2f8-02f0-4e5a-9341-c2fb4acf30f8", + "67408384-f59d-4a82-97c5-c122e7413b9b" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 3, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "332aacbd-7ef4-4737-b3fd-e074bd7255ec", + "uuid": "08d3b099-e2d3-459a-b3c9-c36950f69caf", "title": "toJSON()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3823,8 +3823,8 @@ "context": null, "code": "const cal=new ICalCalendar;const prodId=cal.toJSON().prodId;assert.strictEqual(typeof prodId,\"string\");assert.ok(prodId.length>0);assert.strictEqual(cal.toJSON().events?.length,0)", "err": {}, - "uuid": "f3d3eca2-187e-408f-a88d-a3e3541eebf8", - "parentUUID": "332aacbd-7ef4-4737-b3fd-e074bd7255ec", + "uuid": "f4d012de-fe74-4947-94cb-f4b08a893fe8", + "parentUUID": "08d3b099-e2d3-459a-b3c9-c36950f69caf", "isHook": false, "skipped": false }, @@ -3841,8 +3841,8 @@ "context": null, "code": "const cal=new ICalCalendar;cal.createEvent({start:new Date,end:new Date(new Date().getTime()+1e3*60*60),summary:\"HTTP Calendar Event\",x:[{key:\"X-FOO\",value:\"bar\"},{key:\"X-LOREM\",value:\"ipsum\"}]});const prodId=cal.toJSON().prodId;assert.strictEqual(typeof prodId,\"string\");assert.ok(prodId.length>0);const events=cal.toJSON().events;assert.strictEqual(events?.length,1);assert.deepEqual(events[0].x,[{\"key\":\"X-FOO\",\"value\":\"bar\"},{\"key\":\"X-LOREM\",\"value\":\"ipsum\"}])", "err": {}, - "uuid": "7da7ce02-07fa-4bc0-96c3-d803c7bfa9a2", - "parentUUID": "332aacbd-7ef4-4737-b3fd-e074bd7255ec", + "uuid": "07108f15-d151-43ac-b895-99673c278514", + "parentUUID": "08d3b099-e2d3-459a-b3c9-c36950f69caf", "isHook": false, "skipped": false }, @@ -3859,17 +3859,17 @@ "context": null, "code": "const a=new ICalCalendar;new ICalCalendar(a.toJSON())", "err": {}, - "uuid": "aa59fe19-6279-4445-b17b-ff63ef87c5f0", - "parentUUID": "332aacbd-7ef4-4737-b3fd-e074bd7255ec", + "uuid": "326dd447-e5d9-4ce7-a3cb-1cb76eefdf38", + "parentUUID": "08d3b099-e2d3-459a-b3c9-c36950f69caf", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "f3d3eca2-187e-408f-a88d-a3e3541eebf8", - "7da7ce02-07fa-4bc0-96c3-d803c7bfa9a2", - "aa59fe19-6279-4445-b17b-ff63ef87c5f0" + "f4d012de-fe74-4947-94cb-f4b08a893fe8", + "07108f15-d151-43ac-b895-99673c278514", + "326dd447-e5d9-4ce7-a3cb-1cb76eefdf38" ], "failures": [], "pending": [], @@ -3880,7 +3880,7 @@ "_timeout": 2000 }, { - "uuid": "41fcd0a7-fd3b-42c3-b570-b00eb5940e7a", + "uuid": "746e0e6b-133d-441a-8436-dafd01a1d399", "title": "length()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3900,15 +3900,15 @@ "context": null, "code": "const cal=new ICalCalendar;assert.strictEqual(cal.length(),0);cal.createEvent({start:new Date,end:new Date(new Date().getTime()+36e5),summary:\"Example Event\"});assert.strictEqual(cal.length(),1)", "err": {}, - "uuid": "2f074d84-608d-4638-a7bf-b2b78d9a42c3", - "parentUUID": "41fcd0a7-fd3b-42c3-b570-b00eb5940e7a", + "uuid": "614c3d6f-ae37-47f6-9d8c-599210c56843", + "parentUUID": "746e0e6b-133d-441a-8436-dafd01a1d399", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "2f074d84-608d-4638-a7bf-b2b78d9a42c3" + "614c3d6f-ae37-47f6-9d8c-599210c56843" ], "failures": [], "pending": [], @@ -3919,7 +3919,7 @@ "_timeout": 2000 }, { - "uuid": "551968f8-0c0c-4545-a084-4693ff6e77da", + "uuid": "638015d5-c204-4559-af77-baa1ea83c606", "title": "toString()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/calendar.ts", "file": "/test/calendar.ts", @@ -3930,7 +3930,7 @@ "title": "should include the URL", "fullTitle": "ical-generator Calendar toString() should include the URL", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -3939,8 +3939,8 @@ "context": null, "code": "const cal=new ICalCalendar;cal.url(\"https://sebbo.net/foo\");assert.ok(cal.toString().indexOf(\"URL:https://sebbo.net/foo\")>-1)", "err": {}, - "uuid": "12e839a9-0996-405a-8880-2bf2421fd8a3", - "parentUUID": "551968f8-0c0c-4545-a084-4693ff6e77da", + "uuid": "d88397d6-333d-45ae-b40c-b1505b9a78ba", + "parentUUID": "638015d5-c204-4559-af77-baa1ea83c606", "isHook": false, "skipped": false }, @@ -3957,8 +3957,8 @@ "context": null, "code": "const cal=new ICalCalendar;cal.method(ICalCalendarMethod.REFRESH);assert.ok(cal.toString().indexOf(\"METHOD:REFRESH\")>-1)", "err": {}, - "uuid": "7658f78a-e187-4a34-a3ae-a72a4a81db81", - "parentUUID": "551968f8-0c0c-4545-a084-4693ff6e77da", + "uuid": "17bd0dfb-84fa-4e64-a434-dfdc4dfd5b6c", + "parentUUID": "638015d5-c204-4559-af77-baa1ea83c606", "isHook": false, "skipped": false }, @@ -3975,8 +3975,8 @@ "context": null, "code": "const cal=new ICalCalendar;cal.name(\"TEST\");assert.ok(cal.toString().indexOf(\"NAME:TEST\")>-1);assert.ok(cal.toString().indexOf(\"X-WR-CALNAME:TEST\")>-1)", "err": {}, - "uuid": "63fae53e-2d04-463f-8415-0e33afe0eb53", - "parentUUID": "551968f8-0c0c-4545-a084-4693ff6e77da", + "uuid": "0881bf27-74bb-42a3-a895-b3fc05bbf574", + "parentUUID": "638015d5-c204-4559-af77-baa1ea83c606", "isHook": false, "skipped": false }, @@ -3984,7 +3984,7 @@ "title": "should include the description", "fullTitle": "ical-generator Calendar toString() should include the description", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -3993,8 +3993,8 @@ "context": null, "code": "const cal=new ICalCalendar;cal.description(\"TEST\");assert.ok(cal.toString().indexOf(\"X-WR-CALDESC:TEST\")>-1)", "err": {}, - "uuid": "97101639-38ad-4090-8d33-2d9cc6f72ae0", - "parentUUID": "551968f8-0c0c-4545-a084-4693ff6e77da", + "uuid": "7f43fee8-6ddc-4849-9ba8-7e73f56b5935", + "parentUUID": "638015d5-c204-4559-af77-baa1ea83c606", "isHook": false, "skipped": false }, @@ -4011,8 +4011,8 @@ "context": null, "code": "const cal=new ICalCalendar;cal.timezone(\"TEST\");assert.ok(cal.toString().indexOf(\"TIMEZONE-ID:TEST\")>-1);assert.ok(cal.toString().indexOf(\"X-WR-TIMEZONE:TEST\")>-1)", "err": {}, - "uuid": "a6cd0b7e-d882-48a8-9f59-9596570d3449", - "parentUUID": "551968f8-0c0c-4545-a084-4693ff6e77da", + "uuid": "c103f31a-39ab-4951-8afd-bdbe605c54ad", + "parentUUID": "638015d5-c204-4559-af77-baa1ea83c606", "isHook": false, "skipped": false }, @@ -4020,7 +4020,7 @@ "title": "should include the source", "fullTitle": "ical-generator Calendar toString() should include the source", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -4029,8 +4029,8 @@ "context": null, "code": "const cal=new ICalCalendar;cal.source(\"http://foo.bar.example.com/ical.cal\");assert.ok(cal.toString().includes(\"http://foo.bar.example.com/ical.cal\"))", "err": {}, - "uuid": "7f5e068f-4b3f-409e-87af-2c0d65b66075", - "parentUUID": "551968f8-0c0c-4545-a084-4693ff6e77da", + "uuid": "bff5b50f-3022-4bee-9e44-bbe8e0e70baf", + "parentUUID": "638015d5-c204-4559-af77-baa1ea83c606", "isHook": false, "skipped": false }, @@ -4047,8 +4047,8 @@ "context": null, "code": "const cal=new ICalCalendar;cal.timezone({name:\"Europe/Berlin\",generator:getVtimezoneComponent});cal.createEvent({start:new Date,timezone:\"Europe/London\"});assert.ok(cal.toString().includes(\"BEGIN:VTIMEZONE\\r\\n\"),\"BEGIN:VTIMEZONE\");assert.ok(cal.toString().includes(\"TZID:Europe/Berlin\\r\\n\"),\"TZID:Europe/Berlin\");assert.ok(cal.toString().includes(\"TZID:Europe/London\\r\\n\"),\"TZID:Europe/London\")", "err": {}, - "uuid": "85471480-6aa5-479d-9447-19b26073b74c", - "parentUUID": "551968f8-0c0c-4545-a084-4693ff6e77da", + "uuid": "c41b6a42-4946-4031-a9e3-516181040470", + "parentUUID": "638015d5-c204-4559-af77-baa1ea83c606", "isHook": false, "skipped": false }, @@ -4065,8 +4065,8 @@ "context": null, "code": "const cal=new ICalCalendar;cal.timezone({name:\"FOO\",generator:getVtimezoneComponent});assert.ok(!cal.toString().includes(\"TZID:Foo\\r\\n\"))", "err": {}, - "uuid": "f4d42b56-5fe0-4be3-bb24-b1e67dfc2ec1", - "parentUUID": "551968f8-0c0c-4545-a084-4693ff6e77da", + "uuid": "159082fb-b124-49dd-bffd-abe0b0ee06cb", + "parentUUID": "638015d5-c204-4559-af77-baa1ea83c606", "isHook": false, "skipped": false }, @@ -4083,8 +4083,8 @@ "context": null, "code": "const cal=new ICalCalendar;cal.timezone({name:\"/Europe/Berlin\",generator:getVtimezoneComponent});assert.ok(!cal.toString().includes(\"TZID:/Europe/Berlin\\r\\n\"))", "err": {}, - "uuid": "2d2a7488-0f4e-4e70-be69-e673d395e54c", - "parentUUID": "551968f8-0c0c-4545-a084-4693ff6e77da", + "uuid": "877c5e0c-abfa-4d75-8d14-bdf6b01bff9e", + "parentUUID": "638015d5-c204-4559-af77-baa1ea83c606", "isHook": false, "skipped": false }, @@ -4092,7 +4092,7 @@ "title": "should include the ttl", "fullTitle": "ical-generator Calendar toString() should include the ttl", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -4101,29 +4101,29 @@ "context": null, "code": "const cal=new ICalCalendar;cal.ttl(moment.duration(3,\"days\"));assert.ok(cal.toString().indexOf(\"REFRESH-INTERVAL;VALUE=DURATION:P3D\")>-1);assert.ok(cal.toString().indexOf(\"X-PUBLISHED-TTL:P3D\")>-1)", "err": {}, - "uuid": "db68d755-d177-4f9e-a01f-564874c6f0f1", - "parentUUID": "551968f8-0c0c-4545-a084-4693ff6e77da", + "uuid": "9339924b-a718-4a4b-9208-ac57847138a4", + "parentUUID": "638015d5-c204-4559-af77-baa1ea83c606", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "12e839a9-0996-405a-8880-2bf2421fd8a3", - "7658f78a-e187-4a34-a3ae-a72a4a81db81", - "63fae53e-2d04-463f-8415-0e33afe0eb53", - "97101639-38ad-4090-8d33-2d9cc6f72ae0", - "a6cd0b7e-d882-48a8-9f59-9596570d3449", - "7f5e068f-4b3f-409e-87af-2c0d65b66075", - "85471480-6aa5-479d-9447-19b26073b74c", - "f4d42b56-5fe0-4be3-bb24-b1e67dfc2ec1", - "2d2a7488-0f4e-4e70-be69-e673d395e54c", - "db68d755-d177-4f9e-a01f-564874c6f0f1" + "d88397d6-333d-45ae-b40c-b1505b9a78ba", + "17bd0dfb-84fa-4e64-a434-dfdc4dfd5b6c", + "0881bf27-74bb-42a3-a895-b3fc05bbf574", + "7f43fee8-6ddc-4849-9ba8-7e73f56b5935", + "c103f31a-39ab-4951-8afd-bdbe605c54ad", + "bff5b50f-3022-4bee-9e44-bbe8e0e70baf", + "c41b6a42-4946-4031-a9e3-516181040470", + "159082fb-b124-49dd-bffd-abe0b0ee06cb", + "877c5e0c-abfa-4d75-8d14-bdf6b01bff9e", + "9339924b-a718-4a4b-9208-ac57847138a4" ], "failures": [], "pending": [], "skipped": [], - "duration": 6, + "duration": 4, "root": false, "rootEmpty": false, "_timeout": 2000 @@ -4139,7 +4139,7 @@ "_timeout": 2000 }, { - "uuid": "8f61cac3-9460-44e5-98b7-4c17b64c1062", + "uuid": "c9cf2cb1-a003-4ea0-b82e-ce2f741cad73", "title": "ical-generator Cases", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/cases.ts", "file": "/test/cases.ts", @@ -4150,7 +4150,7 @@ "title": "case #1", "fullTitle": "ical-generator Cases case #1", "timedOut": false, - "duration": 2, + "duration": 3, "state": "passed", "speed": "fast", "pass": true, @@ -4159,8 +4159,8 @@ "context": null, "code": "const cal=ical({prodId:\"//sebbo.net//ical-generator.tests//EN\"});cal.createEvent({id:\"123\",start:new Date(\"Fr Oct 04 2013 22:39:30 UTC\"),end:new Date(\"Fr Oct 04 2013 23:15:00 UTC\"),stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),created:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),lastModified:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),summary:\"Simple Event\"});const string=cal.toString();assert.strictEqual(string,await fs.readFile(resultDir+\"/generate_01.ics\",\"utf8\"));assert.strictEqual(ical(cal.toJSON()).toString(),string)", "err": {}, - "uuid": "f3542f95-cf37-4606-970d-d82430f75cc0", - "parentUUID": "8f61cac3-9460-44e5-98b7-4c17b64c1062", + "uuid": "063bb7af-21be-4ebb-951c-e6fc5f81daeb", + "parentUUID": "c9cf2cb1-a003-4ea0-b82e-ce2f741cad73", "isHook": false, "skipped": false }, @@ -4168,7 +4168,7 @@ "title": "case #2", "fullTitle": "ical-generator Cases case #2", "timedOut": false, - "duration": 2, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -4177,8 +4177,8 @@ "context": null, "code": "const cal=ical({prodId:\"//sebbo.net//ical-generator.tests//EN\"});cal.createEvent({id:\"123\",start:new Date(\"Fr Oct 04 2013 22:39:30 UTC\"),end:new Date(\"Fr Oct 04 2013 23:15:00 UTC\"),stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),summary:\"Sample Event\",location:\"localhost\",transparency:ICalEventTransparency.OPAQUE,description:{plain:\"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.\\nbeep boop\",html:\"

    Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.\\nbeep boop

    \"}});const string=cal.toString();assert.strictEqual(string,await fs.readFile(resultDir+\"/generate_02.ics\",\"utf8\"));assert.strictEqual(ical(cal.toJSON()).toString(),string)", "err": {}, - "uuid": "a2e27ed8-8a04-48f4-b93c-21d2a09f3495", - "parentUUID": "8f61cac3-9460-44e5-98b7-4c17b64c1062", + "uuid": "df80f248-eec0-4ff1-8ae6-80c0b0b39154", + "parentUUID": "c9cf2cb1-a003-4ea0-b82e-ce2f741cad73", "isHook": false, "skipped": false }, @@ -4186,7 +4186,7 @@ "title": "case #3", "fullTitle": "ical-generator Cases case #3", "timedOut": false, - "duration": 4, + "duration": 3, "state": "passed", "speed": "fast", "pass": true, @@ -4195,8 +4195,8 @@ "context": null, "code": "const cal=ical({method:ICalCalendarMethod.ADD,prodId:\"//sebbo.net//ical-generator.tests//EN\"});cal.createEvent({id:\"123\",start:new Date(\"Fr Oct 04 2013 22:39:30 UTC\"),end:new Date(\"Fr Oct 06 2013 23:15:00 UTC\"),allDay:true,stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),summary:\"Sample Event\",location:{title:\"Apple Store Kurf\\xFCrstendamm\",address:\"Kurf\\xFCrstendamm 26, 10719 Berlin, Deutschland\",radius:141.1751386318387,geo:{lat:52.50363,lon:13.32865}},organizer:\"Sebastian Pekarek \",status:ICalEventStatus.CONFIRMED,categories:[{name:\"WORK\"}],url:\"http://sebbo.net/\",attachments:[\"https://files.sebbo.net/calendar/attachments/foo\"]});const string=cal.toString();assert.strictEqual(string,await fs.readFile(resultDir+\"/generate_03.ics\",\"utf8\"),\"toString\");assert.strictEqual(ical(cal.toJSON()).toString(),string,\"toJSON / toString()\")", "err": {}, - "uuid": "d88d3fec-4d12-4dfa-a19b-57d7650fc1c8", - "parentUUID": "8f61cac3-9460-44e5-98b7-4c17b64c1062", + "uuid": "3971a031-a84b-4c68-8266-d74faea95bed", + "parentUUID": "c9cf2cb1-a003-4ea0-b82e-ce2f741cad73", "isHook": false, "skipped": false }, @@ -4204,7 +4204,7 @@ "title": "case #4 (repeating)", "fullTitle": "ical-generator Cases case #4 (repeating)", "timedOut": false, - "duration": 2, + "duration": 3, "state": "passed", "speed": "fast", "pass": true, @@ -4213,8 +4213,8 @@ "context": null, "code": "const cal=ical({prodId:\"//sebbo.net//ical-generator.tests//EN\"});cal.timezone({name:null,generator:getVtimezoneComponent});cal.events([{id:\"1\",start:new Date(\"Fr Oct 04 2013 22:39:30 UTC\"),end:new Date(\"Fr Oct 06 2013 23:15:00 UTC\"),stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),summary:\"repeating by month\",repeating:{freq:ICalEventRepeatingFreq.MONTHLY,exclude:new Date(\"Fr Oct 06 2013 23:15:00 UTC\")}},{id:\"2\",start:new Date(\"Fr Oct 04 2013 22:39:30\"),end:new Date(\"Fr Oct 06 2013 23:15:00\"),stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),timezone:\"Europe/Berlin\",summary:\"repeating by day, twice\",repeating:{freq:ICalEventRepeatingFreq.DAILY,count:2}},{id:\"3\",start:new Date(\"Fr Oct 04 2013 22:39:30 UTC\"),end:new Date(\"Fr Oct 06 2013 23:15:00 UTC\"),stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),summary:\"repeating by 3 weeks, until 2014\",repeating:{freq:ICalEventRepeatingFreq.WEEKLY,interval:3,until:new Date(\"We Jan 01 2014 00:00:00 UTC\")}}]);assert.strictEqual(cal.toString(),await fs.readFile(resultDir+\"/generate_04.ics\",\"utf8\"),\"first check\");cal.timezone(null);assert.strictEqual(ical(cal.toJSON()).toString(),cal.toString(),\"second check\")", "err": {}, - "uuid": "a8868513-ded4-48c3-a68c-1b4d7dada32c", - "parentUUID": "8f61cac3-9460-44e5-98b7-4c17b64c1062", + "uuid": "40cfb391-bbd7-4ee3-83cb-05850c66971a", + "parentUUID": "c9cf2cb1-a003-4ea0-b82e-ce2f741cad73", "isHook": false, "skipped": false }, @@ -4222,7 +4222,7 @@ "title": "case #5 (floating)", "fullTitle": "ical-generator Cases case #5 (floating)", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -4231,8 +4231,8 @@ "context": null, "code": "const cal=ical({prodId:\"//sebbo.net//ical-generator.tests//EN\"});cal.createEvent({id:\"1\",start:new Date(\"Fr Oct 04 2013 22:39:30 UTC\"),end:new Date(\"Fr Oct 06 2013 23:15:00 UTC\"),stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),summary:\"floating\",floating:true});const string=cal.toString();assert.strictEqual(string,await fs.readFile(resultDir+\"/generate_05.ics\",\"utf8\"));assert.strictEqual(ical(cal.toJSON()).toString(),string)", "err": {}, - "uuid": "84192f87-e4a1-4d10-9d8a-932a7aad0fac", - "parentUUID": "8f61cac3-9460-44e5-98b7-4c17b64c1062", + "uuid": "c5b62152-4d70-42fa-a177-2f39081ed481", + "parentUUID": "c9cf2cb1-a003-4ea0-b82e-ce2f741cad73", "isHook": false, "skipped": false }, @@ -4240,7 +4240,7 @@ "title": "case #6 (attendee with simple delegation and alarm)", "fullTitle": "ical-generator Cases case #6 (attendee with simple delegation and alarm)", "timedOut": false, - "duration": 1, + "duration": 2, "state": "passed", "speed": "fast", "pass": true, @@ -4249,8 +4249,8 @@ "context": null, "code": "const cal=ical({prodId:\"//sebbo.net//ical-generator.tests//EN\",method:ICalCalendarMethod.PUBLISH});cal.createEvent({id:\"123\",start:new Date(\"Fr Oct 04 2013 22:39:30 UTC\"),allDay:true,stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),summary:\"Sample Event\",organizer:\"Sebastian Pekarek \",attendees:[{name:'Smith, Matt; (\"Sales\")',email:\"matt@example.com\",delegatesTo:{name:\"John\",email:\"john@example.com\",status:ICalAttendeeStatus.ACCEPTED}}],alarms:[{type:ICalAlarmType.display,trigger:60*10,repeat:{times:2,interval:60}},{type:ICalAlarmType.display,trigger:60*60,description:\"I'm a reminder :)\"}],status:ICalEventStatus.CONFIRMED,url:\"http://sebbo.net/\"});const string=cal.toString();assert.strictEqual(string,await fs.readFile(resultDir+\"/generate_06.ics\",\"utf8\"));assert.strictEqual(ical(cal.toJSON()).toString(),string)", "err": {}, - "uuid": "67d27609-d57e-46c8-ad74-8c2aeae423e4", - "parentUUID": "8f61cac3-9460-44e5-98b7-4c17b64c1062", + "uuid": "42577ed5-1db7-4422-8e9f-e7c8e4992f6b", + "parentUUID": "c9cf2cb1-a003-4ea0-b82e-ce2f741cad73", "isHook": false, "skipped": false }, @@ -4258,7 +4258,7 @@ "title": "case #7 (repeating: byDay, byMonth, byMonthDay)", "fullTitle": "ical-generator Cases case #7 (repeating: byDay, byMonth, byMonthDay)", "timedOut": false, - "duration": 2, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -4267,8 +4267,8 @@ "context": null, "code": "const cal=ical({prodId:\"//sebbo.net//ical-generator.tests//EN\"});cal.events([{id:\"1\",start:new Date(\"Fr Oct 04 2013 22:39:30 UTC\"),end:new Date(\"Fr Oct 06 2013 23:15:00 UTC\"),stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),summary:\"repeating by month\",repeating:{freq:ICalEventRepeatingFreq.MONTHLY,byMonth:[1,4,7,10]}},{id:\"2\",start:new Date(\"Fr Oct 04 2013 22:39:30 UTC\"),stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),summary:\"repeating on Mo/We/Fr, twice\",repeating:{freq:ICalEventRepeatingFreq.DAILY,count:2,byDay:[ICalWeekday.MO,ICalWeekday.WE,ICalWeekday.FR]}},{id:\"3\",start:new Date(\"Fr Oct 04 2013 22:39:30 UTC\"),end:new Date(\"Fr Oct 06 2013 23:15:00 UTC\"),stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),summary:\"repeating on 1st and 15th\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:1,byMonthDay:[1,15]}}]);const string=cal.toString();assert.strictEqual(string,await fs.readFile(resultDir+\"/generate_07.ics\",\"utf8\"));assert.strictEqual(ical(cal.toJSON()).toString(),string)", "err": {}, - "uuid": "8b08c144-b9ed-4b71-ac65-a1a7216ca9f3", - "parentUUID": "8f61cac3-9460-44e5-98b7-4c17b64c1062", + "uuid": "4dffd87a-6da0-44bc-b76c-0d4bbbca1a57", + "parentUUID": "c9cf2cb1-a003-4ea0-b82e-ce2f741cad73", "isHook": false, "skipped": false }, @@ -4276,7 +4276,7 @@ "title": "case #8", "fullTitle": "ical-generator Cases case #8", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -4285,8 +4285,8 @@ "context": null, "code": "const cal=ical({prodId:\"//sebbo.net//ical-generator.tests//EN\"});cal.createEvent({id:\"123\",start:new Date(\"Fr Oct 04 2013 22:39:30 UTC\"),end:new Date(\"Fr Oct 04 2013 23:15:00 UTC\"),stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),created:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),lastModified:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),summary:\"Simple Event\",attendees:[{type:ICalAttendeeType.INDIVIDUAL,role:ICalAttendeeRole.REQ,status:ICalAttendeeStatus.NEEDSACTION,email:\"mail@example.com\",rsvp:true}]});const string=cal.toString();assert.strictEqual(string,await fs.readFile(resultDir+\"/generate_08.ics\",\"utf8\"));assert.strictEqual(ical(cal.toJSON()).toString(),string)", "err": {}, - "uuid": "f52991bc-8d33-4c9e-b201-34e8f3ad1a5d", - "parentUUID": "8f61cac3-9460-44e5-98b7-4c17b64c1062", + "uuid": "7c14df14-8b24-4e48-bdc1-6deda0ff4906", + "parentUUID": "c9cf2cb1-a003-4ea0-b82e-ce2f741cad73", "isHook": false, "skipped": false }, @@ -4303,23 +4303,23 @@ "context": null, "code": "const cal=ical({method:ICalCalendarMethod.REQUEST,prodId:\"//sebbo.net//ical-generator.tests//EN\"});cal.createEvent({id:\"123\",start:new Date(\"Fr Oct 04 2013 22:39:30 UTC\"),end:new Date(\"Fr Oct 04 2013 23:15:00 UTC\"),stamp:new Date(\"Fr Oct 04 2013 23:34:53 UTC\"),summary:\"Sample Event\",organizer:{name:\"Sebastian Pekarek\",email:\"mail@sebbo.net\",mailto:\"mail2@example2.com\"},attendees:[{type:ICalAttendeeType.INDIVIDUAL,role:ICalAttendeeRole.REQ,status:ICalAttendeeStatus.NEEDSACTION,email:\"mail@example.com\",rsvp:true}]});const string=cal.toString();assert.strictEqual(string,await fs.readFile(resultDir+\"/generate_09.ics\",\"utf8\"),\"toString\");assert.strictEqual(ical(cal.toJSON()).toString(),string,\"toJSON / toString()\")", "err": {}, - "uuid": "f4c411e7-1197-4116-9f6b-411198db5dd9", - "parentUUID": "8f61cac3-9460-44e5-98b7-4c17b64c1062", + "uuid": "37a547e1-d6bd-45c0-9ac1-3ad680f5aced", + "parentUUID": "c9cf2cb1-a003-4ea0-b82e-ce2f741cad73", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "f3542f95-cf37-4606-970d-d82430f75cc0", - "a2e27ed8-8a04-48f4-b93c-21d2a09f3495", - "d88d3fec-4d12-4dfa-a19b-57d7650fc1c8", - "a8868513-ded4-48c3-a68c-1b4d7dada32c", - "84192f87-e4a1-4d10-9d8a-932a7aad0fac", - "67d27609-d57e-46c8-ad74-8c2aeae423e4", - "8b08c144-b9ed-4b71-ac65-a1a7216ca9f3", - "f52991bc-8d33-4c9e-b201-34e8f3ad1a5d", - "f4c411e7-1197-4116-9f6b-411198db5dd9" + "063bb7af-21be-4ebb-951c-e6fc5f81daeb", + "df80f248-eec0-4ff1-8ae6-80c0b0b39154", + "3971a031-a84b-4c68-8266-d74faea95bed", + "40cfb391-bbd7-4ee3-83cb-05850c66971a", + "c5b62152-4d70-42fa-a177-2f39081ed481", + "42577ed5-1db7-4422-8e9f-e7c8e4992f6b", + "4dffd87a-6da0-44bc-b76c-0d4bbbca1a57", + "7c14df14-8b24-4e48-bdc1-6deda0ff4906", + "37a547e1-d6bd-45c0-9ac1-3ad680f5aced" ], "failures": [], "pending": [], @@ -4330,7 +4330,7 @@ "_timeout": 2000 }, { - "uuid": "606ca905-8e57-43b8-b067-6b9cd73ff9b2", + "uuid": "ba930d29-729b-4ab3-b2d9-99c14738dcab", "title": "ical-generator Category", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/category.ts", "file": "/test/category.ts", @@ -4339,7 +4339,7 @@ "tests": [], "suites": [ { - "uuid": "3d350d69-4bb6-49b1-be31-ab19203cddf3", + "uuid": "84c1a4a3-8e88-4cb4-abc5-fc14ee2fafe7", "title": "constructor()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/category.ts", "file": "/test/category.ts", @@ -4359,8 +4359,8 @@ "context": null, "code": "const a=new ICalCategory({unknown:true,name:\"FOO\"});assert.strictEqual(a.name(),\"FOO\")", "err": {}, - "uuid": "50f8ab5c-f925-41e6-aab7-a633fe26ac73", - "parentUUID": "3d350d69-4bb6-49b1-be31-ab19203cddf3", + "uuid": "93c5222f-5639-4caa-8099-3d823fcc1bd8", + "parentUUID": "84c1a4a3-8e88-4cb4-abc5-fc14ee2fafe7", "isHook": false, "skipped": false }, @@ -4377,16 +4377,16 @@ "context": null, "code": "assert.throws(function(){new ICalCategory({})},/`name`/)", "err": {}, - "uuid": "80c692ad-f1e6-4cb6-8b0c-d5fc83bc205a", - "parentUUID": "3d350d69-4bb6-49b1-be31-ab19203cddf3", + "uuid": "3b8c4e90-6d1e-4583-ae35-1730abad79fc", + "parentUUID": "84c1a4a3-8e88-4cb4-abc5-fc14ee2fafe7", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "50f8ab5c-f925-41e6-aab7-a633fe26ac73", - "80c692ad-f1e6-4cb6-8b0c-d5fc83bc205a" + "93c5222f-5639-4caa-8099-3d823fcc1bd8", + "3b8c4e90-6d1e-4583-ae35-1730abad79fc" ], "failures": [], "pending": [], @@ -4397,7 +4397,7 @@ "_timeout": 2000 }, { - "uuid": "9d723d1f-1a79-40db-80d2-516c8f0dae66", + "uuid": "52ee9506-18f6-4f24-96f0-5f6262e7837f", "title": "name()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/category.ts", "file": "/test/category.ts", @@ -4417,8 +4417,8 @@ "context": null, "code": "const c=new ICalCategory({name:\"foo\"});assert.deepStrictEqual(c,c.name(\"FOO\"))", "err": {}, - "uuid": "0a3d79c5-4fd7-4829-8738-faef8a568151", - "parentUUID": "9d723d1f-1a79-40db-80d2-516c8f0dae66", + "uuid": "dd6ea1fd-5369-4f3d-b6f2-21df58062404", + "parentUUID": "52ee9506-18f6-4f24-96f0-5f6262e7837f", "isHook": false, "skipped": false }, @@ -4435,8 +4435,8 @@ "context": null, "code": "const c=new ICalCategory({name:\"foo\"});assert.strictEqual(c.name(),\"foo\");c.name(\"HELLO-WORLD\");assert.strictEqual(c.name(),\"HELLO-WORLD\")", "err": {}, - "uuid": "c4d6ef34-93f7-4d7a-a8f2-c9a071f3bb2b", - "parentUUID": "9d723d1f-1a79-40db-80d2-516c8f0dae66", + "uuid": "f8a8a372-988c-4be6-8b8f-915fc8ecb2aa", + "parentUUID": "52ee9506-18f6-4f24-96f0-5f6262e7837f", "isHook": false, "skipped": false }, @@ -4453,17 +4453,17 @@ "context": null, "code": "const c=new ICalCategory({name:\"BANANA\"});assert.ok(c.toString().includes(\"BANANA\"))", "err": {}, - "uuid": "ebbc2c21-1a7a-4d6f-b75f-cd21bb002679", - "parentUUID": "9d723d1f-1a79-40db-80d2-516c8f0dae66", + "uuid": "f69c4f40-26c8-4b73-89dd-f81562ae86c6", + "parentUUID": "52ee9506-18f6-4f24-96f0-5f6262e7837f", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "0a3d79c5-4fd7-4829-8738-faef8a568151", - "c4d6ef34-93f7-4d7a-a8f2-c9a071f3bb2b", - "ebbc2c21-1a7a-4d6f-b75f-cd21bb002679" + "dd6ea1fd-5369-4f3d-b6f2-21df58062404", + "f8a8a372-988c-4be6-8b8f-915fc8ecb2aa", + "f69c4f40-26c8-4b73-89dd-f81562ae86c6" ], "failures": [], "pending": [], @@ -4474,7 +4474,7 @@ "_timeout": 2000 }, { - "uuid": "391aae83-ef9f-43a5-8cee-dccd450de0cd", + "uuid": "b9ef5d51-45e6-43e5-9b0d-4bd740a13a69", "title": "toJSON()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/category.ts", "file": "/test/category.ts", @@ -4494,15 +4494,15 @@ "context": null, "code": "const c=new ICalCategory({name:\"FOOBAR\"});assert.deepStrictEqual(c.toJSON(),{name:\"FOOBAR\"})", "err": {}, - "uuid": "9094de1b-1be1-4755-b9a0-bd7842f19d10", - "parentUUID": "391aae83-ef9f-43a5-8cee-dccd450de0cd", + "uuid": "41e9ebf0-da4c-4c32-9807-69cb6a401a1a", + "parentUUID": "b9ef5d51-45e6-43e5-9b0d-4bd740a13a69", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "9094de1b-1be1-4755-b9a0-bd7842f19d10" + "41e9ebf0-da4c-4c32-9807-69cb6a401a1a" ], "failures": [], "pending": [], @@ -4523,7 +4523,7 @@ "_timeout": 2000 }, { - "uuid": "cbd51e5d-de2a-4ecb-9b3f-73eef76e0f34", + "uuid": "abc15853-2b6c-4aae-87dd-11617a4a78b6", "title": "ical-generator Event", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -4532,7 +4532,7 @@ "tests": [], "suites": [ { - "uuid": "db0e75a1-9ebe-43fa-b3ed-9ea4f4fb0509", + "uuid": "a6d2a382-a4d7-4550-b5e4-9aa978b4b3fa", "title": "constructor()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -4543,7 +4543,7 @@ "title": "shoud set data from constructor", "fullTitle": "ical-generator Event constructor() shoud set data from constructor", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -4552,8 +4552,8 @@ "context": null, "code": "const data={id:\"FOO\",sequence:1,start:new Date().toJSON(),end:new Date().toJSON(),recurrenceId:new Date().toJSON(),timezone:\"Europe/Berlin\",stamp:new Date().toJSON(),allDay:true,floating:false,repeating:null,summary:\"Hello.\",location:null,description:null,organizer:null,attendees:[],alarms:[],categories:[],status:null,busystatus:ICalEventBusyStatus.BUSY,priority:5,url:\"https://github.com/sebbo2002/ical-generator\",attachments:[\"https://files.sebbo.net/calendar/attachments/foo\"],transparency:ICalEventTransparency.TRANSPARENT,created:new Date().toJSON(),lastModified:new Date().toJSON(),class:null,x:[]};const event=new ICalEvent(data,new ICalCalendar);assert.deepStrictEqual(event.toJSON(),data)", "err": {}, - "uuid": "61981a27-7cec-43c4-8f21-8f7d9c3e76cf", - "parentUUID": "db0e75a1-9ebe-43fa-b3ed-9ea4f4fb0509", + "uuid": "fdce1d00-505f-464a-916e-b76e22b20b9f", + "parentUUID": "a6d2a382-a4d7-4550-b5e4-9aa978b4b3fa", "isHook": false, "skipped": false }, @@ -4570,27 +4570,27 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({summary:\"Testevent\"},null)},/`calendar`/)", "err": {}, - "uuid": "2997eae4-b1cb-4bf0-aac9-70faa97f745a", - "parentUUID": "db0e75a1-9ebe-43fa-b3ed-9ea4f4fb0509", + "uuid": "266e623c-ebad-48fa-9e02-d7e8d3e4a817", + "parentUUID": "a6d2a382-a4d7-4550-b5e4-9aa978b4b3fa", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "61981a27-7cec-43c4-8f21-8f7d9c3e76cf", - "2997eae4-b1cb-4bf0-aac9-70faa97f745a" + "fdce1d00-505f-464a-916e-b76e22b20b9f", + "266e623c-ebad-48fa-9e02-d7e8d3e4a817" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "6a630b00-9716-4c7e-b975-c284a7b40758", + "uuid": "9bae67b2-e37e-45af-970f-f0f246c813aa", "title": "id()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -4610,8 +4610,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(event,event.id(1048))", "err": {}, - "uuid": "c64b5adc-e562-4fe3-a599-020b1b8bc474", - "parentUUID": "6a630b00-9716-4c7e-b975-c284a7b40758", + "uuid": "67edca0e-d088-4f2d-86ed-6ad8394accd7", + "parentUUID": "9bae67b2-e37e-45af-970f-f0f246c813aa", "isHook": false, "skipped": false }, @@ -4628,16 +4628,16 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar).id(512);assert.strictEqual(event.id(),\"512\");event.id(\"xyz\");assert.strictEqual(event.id(),\"xyz\")", "err": {}, - "uuid": "df80be3e-d19d-4099-b3d3-cd2d524ec66a", - "parentUUID": "6a630b00-9716-4c7e-b975-c284a7b40758", + "uuid": "87955615-4985-4cc4-9360-c336fa6aaa07", + "parentUUID": "9bae67b2-e37e-45af-970f-f0f246c813aa", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "c64b5adc-e562-4fe3-a599-020b1b8bc474", - "df80be3e-d19d-4099-b3d3-cd2d524ec66a" + "67edca0e-d088-4f2d-86ed-6ad8394accd7", + "87955615-4985-4cc4-9360-c336fa6aaa07" ], "failures": [], "pending": [], @@ -4648,7 +4648,7 @@ "_timeout": 2000 }, { - "uuid": "d811a9dd-5ff1-46e9-b59c-124831214b04", + "uuid": "5c4421e1-d44a-4abb-980c-932f41db1a85", "title": "uid()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -4668,8 +4668,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(event,event.uid(1048))", "err": {}, - "uuid": "bbd0db3f-4a61-45f7-b40f-f01de142b643", - "parentUUID": "d811a9dd-5ff1-46e9-b59c-124831214b04", + "uuid": "77f054d5-9e92-4f69-ba77-dcfac63a4b5c", + "parentUUID": "5c4421e1-d44a-4abb-980c-932f41db1a85", "isHook": false, "skipped": false }, @@ -4686,16 +4686,16 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar).uid(512);assert.strictEqual(event.uid(),\"512\");event.id(\"xyz\");assert.strictEqual(event.uid(),\"xyz\")", "err": {}, - "uuid": "b7aeb8c1-e569-4c0a-9f4a-b1cb405c88ff", - "parentUUID": "d811a9dd-5ff1-46e9-b59c-124831214b04", + "uuid": "b899754c-6944-41cf-956f-7bc0d5a918af", + "parentUUID": "5c4421e1-d44a-4abb-980c-932f41db1a85", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "bbd0db3f-4a61-45f7-b40f-f01de142b643", - "b7aeb8c1-e569-4c0a-9f4a-b1cb405c88ff" + "77f054d5-9e92-4f69-ba77-dcfac63a4b5c", + "b899754c-6944-41cf-956f-7bc0d5a918af" ], "failures": [], "pending": [], @@ -4706,7 +4706,7 @@ "_timeout": 2000 }, { - "uuid": "00e5b872-15c9-451b-88ff-45d371eb96f4", + "uuid": "40e6a6ed-0fd2-4737-9274-5ff86487a6a3", "title": "sequence()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -4726,8 +4726,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(event,event.sequence(1))", "err": {}, - "uuid": "517d085d-783f-4290-87e7-d565a07a7311", - "parentUUID": "00e5b872-15c9-451b-88ff-45d371eb96f4", + "uuid": "d7adf746-0f68-4ba4-9444-21e6d797a295", + "parentUUID": "40e6a6ed-0fd2-4737-9274-5ff86487a6a3", "isHook": false, "skipped": false }, @@ -4744,8 +4744,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar).sequence(1048);assert.strictEqual(event.sequence(),1048)", "err": {}, - "uuid": "20060261-5466-4b51-940d-580e440da413", - "parentUUID": "00e5b872-15c9-451b-88ff-45d371eb96f4", + "uuid": "9a83bb81-9646-43dc-982c-475b6b9e56f6", + "parentUUID": "40e6a6ed-0fd2-4737-9274-5ff86487a6a3", "isHook": false, "skipped": false }, @@ -4753,7 +4753,7 @@ "title": "setter should throw error when sequence is not valid", "fullTitle": "ical-generator Event sequence() setter should throw error when sequence is not valid", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -4762,8 +4762,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){event.sequence(\"hello\")},/`sequence`/)", "err": {}, - "uuid": "ee1169c9-35a5-42db-8d14-b0aa0f503277", - "parentUUID": "00e5b872-15c9-451b-88ff-45d371eb96f4", + "uuid": "4e860d1f-7bc3-4090-84ee-8c97edb4c1a7", + "parentUUID": "40e6a6ed-0fd2-4737-9274-5ff86487a6a3", "isHook": false, "skipped": false }, @@ -4780,29 +4780,29 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar).sequence(12);assert.strictEqual(event.sequence(),12);event.sequence(0);assert.strictEqual(event.sequence(),0)", "err": {}, - "uuid": "0d62304d-fa5b-44a8-94b0-8894df5e970d", - "parentUUID": "00e5b872-15c9-451b-88ff-45d371eb96f4", + "uuid": "e9f474b9-b64e-48fc-91f8-1d9164496ad3", + "parentUUID": "40e6a6ed-0fd2-4737-9274-5ff86487a6a3", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "517d085d-783f-4290-87e7-d565a07a7311", - "20060261-5466-4b51-940d-580e440da413", - "ee1169c9-35a5-42db-8d14-b0aa0f503277", - "0d62304d-fa5b-44a8-94b0-8894df5e970d" + "d7adf746-0f68-4ba4-9444-21e6d797a295", + "9a83bb81-9646-43dc-982c-475b6b9e56f6", + "4e860d1f-7bc3-4090-84ee-8c97edb4c1a7", + "e9f474b9-b64e-48fc-91f8-1d9164496ad3" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "d210fcff-5434-4849-8b79-54d0aead18ae", + "uuid": "b0176d1b-fb26-4468-8c75-40fd8b05167a", "title": "start()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -4822,8 +4822,8 @@ "context": null, "code": "const now=moment();const event=new ICalEvent({start:new Date},new ICalCalendar);event.start(now);assert.strictEqual(event.start(),now)", "err": {}, - "uuid": "da48c49f-df44-4200-89a6-18b45b934ef4", - "parentUUID": "d210fcff-5434-4849-8b79-54d0aead18ae", + "uuid": "3e857695-737d-446d-9f52-d5da57270add", + "parentUUID": "b0176d1b-fb26-4468-8c75-40fd8b05167a", "isHook": false, "skipped": false }, @@ -4831,7 +4831,7 @@ "title": "setter should parse string if required", "fullTitle": "ical-generator Event start() setter should parse string if required", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -4840,8 +4840,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\").toJSON();assert.deepStrictEqual(event,event.start(date));assert.deepStrictEqual(event.start(),date)", "err": {}, - "uuid": "af586c8f-ea26-475f-9128-483dde4f7bf5", - "parentUUID": "d210fcff-5434-4849-8b79-54d0aead18ae", + "uuid": "f522d41a-f654-4ff7-8e8f-85f11e1a810a", + "parentUUID": "b0176d1b-fb26-4468-8c75-40fd8b05167a", "isHook": false, "skipped": false }, @@ -4858,8 +4858,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\").toDate();assert.deepStrictEqual(event,event.start(date));assert.deepStrictEqual(event.start(),date)", "err": {}, - "uuid": "a7102beb-c1d6-4d35-8b5f-9a6b4b81b14c", - "parentUUID": "d210fcff-5434-4849-8b79-54d0aead18ae", + "uuid": "bb3b81c4-51a0-4fd9-ab7f-384f3fc835a3", + "parentUUID": "b0176d1b-fb26-4468-8c75-40fd8b05167a", "isHook": false, "skipped": false }, @@ -4876,8 +4876,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){event.start(3)},/`start`/,\"Number\");assert.throws(function(){event.start(null)},/`start`/,\"null\");assert.throws(function(){event.start(NaN)},/`start`/,\"NaN\");assert.throws(function(){event.start(new Date(\"hallo\"))},/`start`/,\"Invalid Date\")", "err": {}, - "uuid": "aee7eab4-f75d-4bf6-b77e-b6f56491eb1d", - "parentUUID": "d210fcff-5434-4849-8b79-54d0aead18ae", + "uuid": "5e819ad1-afe2-4b91-baea-1e212d9e388e", + "parentUUID": "b0176d1b-fb26-4468-8c75-40fd8b05167a", "isHook": false, "skipped": false }, @@ -4894,8 +4894,8 @@ "context": null, "code": "const start=moment().add(5,\"minutes\");const end=moment();const event=new ICalEvent({start:new Date},new ICalCalendar).end(end).start(start);assert.deepStrictEqual(event.start(),end);assert.deepStrictEqual(event.end(),start)", "err": {}, - "uuid": "a82b9f9d-eef7-4358-b52b-f5427faa806c", - "parentUUID": "d210fcff-5434-4849-8b79-54d0aead18ae", + "uuid": "511e6e94-a9a8-443e-b0d5-3d6066dececd", + "parentUUID": "b0176d1b-fb26-4468-8c75-40fd8b05167a", "isHook": false, "skipped": false }, @@ -4912,31 +4912,31 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(event,event.start(moment()));assert.deepStrictEqual(event,event.start(new Date))", "err": {}, - "uuid": "5e7e3a30-6f78-45ee-95f4-8ec6b87980c2", - "parentUUID": "d210fcff-5434-4849-8b79-54d0aead18ae", + "uuid": "9122b4ee-6024-4f74-9c57-1165a96cffc0", + "parentUUID": "b0176d1b-fb26-4468-8c75-40fd8b05167a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "da48c49f-df44-4200-89a6-18b45b934ef4", - "af586c8f-ea26-475f-9128-483dde4f7bf5", - "a7102beb-c1d6-4d35-8b5f-9a6b4b81b14c", - "aee7eab4-f75d-4bf6-b77e-b6f56491eb1d", - "a82b9f9d-eef7-4358-b52b-f5427faa806c", - "5e7e3a30-6f78-45ee-95f4-8ec6b87980c2" + "3e857695-737d-446d-9f52-d5da57270add", + "f522d41a-f654-4ff7-8e8f-85f11e1a810a", + "bb3b81c4-51a0-4fd9-ab7f-384f3fc835a3", + "5e819ad1-afe2-4b91-baea-1e212d9e388e", + "511e6e94-a9a8-443e-b0d5-3d6066dececd", + "9122b4ee-6024-4f74-9c57-1165a96cffc0" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "419b7159-f4aa-4418-858d-9f27252444f1", + "uuid": "287da241-d56c-44fa-8809-09e4577c62f5", "title": "end()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -4956,8 +4956,8 @@ "context": null, "code": "const now=moment();const event=new ICalEvent({start:moment().subtract({minute:1})},new ICalCalendar);event.end(now);assert.deepStrictEqual(event.end(),now)", "err": {}, - "uuid": "3e762d7b-5fbf-41a0-a74d-4bc4f010be88", - "parentUUID": "419b7159-f4aa-4418-858d-9f27252444f1", + "uuid": "161f634c-5405-4bc4-8e06-d62718951f0c", + "parentUUID": "287da241-d56c-44fa-8809-09e4577c62f5", "isHook": false, "skipped": false }, @@ -4974,8 +4974,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\").toJSON();assert.deepStrictEqual(event,event.end(date));assert.deepStrictEqual(event.end(),date)", "err": {}, - "uuid": "2c813e50-b5d5-4ffe-8ea8-66bf9475acaf", - "parentUUID": "419b7159-f4aa-4418-858d-9f27252444f1", + "uuid": "167ce042-a06a-4c44-b52b-4c8837d79d04", + "parentUUID": "287da241-d56c-44fa-8809-09e4577c62f5", "isHook": false, "skipped": false }, @@ -4992,8 +4992,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\").toDate();assert.deepStrictEqual(event,event.end(date));assert.deepStrictEqual(event.end(),date)", "err": {}, - "uuid": "d7f01e09-4b6b-4e49-85f1-070b85acbc8e", - "parentUUID": "419b7159-f4aa-4418-858d-9f27252444f1", + "uuid": "155a2b3c-6e6b-4d2a-9c6b-6bcef5ff0969", + "parentUUID": "287da241-d56c-44fa-8809-09e4577c62f5", "isHook": false, "skipped": false }, @@ -5010,8 +5010,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){event.end(3)},/`end`/,\"Number\");assert.throws(function(){event.end(NaN)},/`end`/,\"NaN\");assert.throws(function(){event.end(new Date(\"hallo\"))},/`end`/,\"Invalid Date\")", "err": {}, - "uuid": "f2b605ed-6ae7-4da8-9391-be2e0348824a", - "parentUUID": "419b7159-f4aa-4418-858d-9f27252444f1", + "uuid": "0e0b394f-967d-41a4-a6f0-84a8bbf11d6f", + "parentUUID": "287da241-d56c-44fa-8809-09e4577c62f5", "isHook": false, "skipped": false }, @@ -5028,8 +5028,8 @@ "context": null, "code": "const start=moment().add(5,\"minutes\");const end=moment();const event=new ICalEvent({start:new Date},new ICalCalendar).start(start).end(end);assert.deepStrictEqual(event.start(),end);assert.deepStrictEqual(event.end(),start)", "err": {}, - "uuid": "b48892c7-082d-40af-8661-2d528222a323", - "parentUUID": "419b7159-f4aa-4418-858d-9f27252444f1", + "uuid": "d1033267-64de-4e7e-9979-9739decbe0ce", + "parentUUID": "287da241-d56c-44fa-8809-09e4577c62f5", "isHook": false, "skipped": false }, @@ -5046,20 +5046,20 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(event,event.end(moment()));assert.deepStrictEqual(event,event.end(new Date))", "err": {}, - "uuid": "f9ecf910-6d5f-4f97-9048-f2e59130fdb6", - "parentUUID": "419b7159-f4aa-4418-858d-9f27252444f1", + "uuid": "670d8346-6b6c-4785-a9a8-cae9e0d7f970", + "parentUUID": "287da241-d56c-44fa-8809-09e4577c62f5", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "3e762d7b-5fbf-41a0-a74d-4bc4f010be88", - "2c813e50-b5d5-4ffe-8ea8-66bf9475acaf", - "d7f01e09-4b6b-4e49-85f1-070b85acbc8e", - "f2b605ed-6ae7-4da8-9391-be2e0348824a", - "b48892c7-082d-40af-8661-2d528222a323", - "f9ecf910-6d5f-4f97-9048-f2e59130fdb6" + "161f634c-5405-4bc4-8e06-d62718951f0c", + "167ce042-a06a-4c44-b52b-4c8837d79d04", + "155a2b3c-6e6b-4d2a-9c6b-6bcef5ff0969", + "0e0b394f-967d-41a4-a6f0-84a8bbf11d6f", + "d1033267-64de-4e7e-9979-9739decbe0ce", + "670d8346-6b6c-4785-a9a8-cae9e0d7f970" ], "failures": [], "pending": [], @@ -5070,7 +5070,7 @@ "_timeout": 2000 }, { - "uuid": "506029bc-ac33-4c04-852c-6bcd51a28770", + "uuid": "dc29e3bf-d915-41c5-879f-dfb96b7f3fc2", "title": "recurrenceId()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -5090,8 +5090,8 @@ "context": null, "code": "const now=moment();const event=new ICalEvent({start:new Date},new ICalCalendar);event.recurrenceId(now);assert.deepStrictEqual(event.recurrenceId(),now)", "err": {}, - "uuid": "aba499c9-7852-4fd4-bb5d-56c610a1fbc4", - "parentUUID": "506029bc-ac33-4c04-852c-6bcd51a28770", + "uuid": "c108ce38-593e-44a2-8d1b-9ff2ba69174f", + "parentUUID": "dc29e3bf-d915-41c5-879f-dfb96b7f3fc2", "isHook": false, "skipped": false }, @@ -5108,8 +5108,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\").toJSON();assert.deepStrictEqual(event,event.recurrenceId(date));assert.deepStrictEqual(event.recurrenceId(),date)", "err": {}, - "uuid": "79369c7e-682c-423a-80a8-1ba6d42d1fb1", - "parentUUID": "506029bc-ac33-4c04-852c-6bcd51a28770", + "uuid": "487c5ba7-6fa2-4f41-ad38-76e1db681dfd", + "parentUUID": "dc29e3bf-d915-41c5-879f-dfb96b7f3fc2", "isHook": false, "skipped": false }, @@ -5126,8 +5126,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\").toDate();assert.deepStrictEqual(event,event.recurrenceId(date));assert.deepStrictEqual(event.recurrenceId(),date)", "err": {}, - "uuid": "57ae2185-3dc2-4276-93b7-f14970e7b725", - "parentUUID": "506029bc-ac33-4c04-852c-6bcd51a28770", + "uuid": "d07e7e63-625d-4802-a56c-28b6dd61ddc9", + "parentUUID": "dc29e3bf-d915-41c5-879f-dfb96b7f3fc2", "isHook": false, "skipped": false }, @@ -5135,7 +5135,7 @@ "title": "setter should throw error when time is not a Date", "fullTitle": "ical-generator Event recurrenceId() setter should throw error when time is not a Date", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -5144,8 +5144,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){event.recurrenceId(3)},/`recurrenceId`/,\"Number\");assert.throws(function(){event.recurrenceId(NaN)},/`recurrenceId`/,\"NaN\");assert.throws(function(){event.recurrenceId(new Date(\"hallo\"))},/`recurrenceId`/,\"Invalid Date\")", "err": {}, - "uuid": "6ac7f496-481d-4764-be66-7dbe980c64d0", - "parentUUID": "506029bc-ac33-4c04-852c-6bcd51a28770", + "uuid": "933cab42-d49b-4173-94c6-ce3605e8a886", + "parentUUID": "dc29e3bf-d915-41c5-879f-dfb96b7f3fc2", "isHook": false, "skipped": false }, @@ -5162,30 +5162,30 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(event,event.recurrenceId(moment()));assert.deepStrictEqual(event,event.recurrenceId(new Date))", "err": {}, - "uuid": "0c04fe9e-ca16-4ef0-a72e-ae33bb236b11", - "parentUUID": "506029bc-ac33-4c04-852c-6bcd51a28770", + "uuid": "da50c4ad-59a1-406e-9ec7-786f87bac5f3", + "parentUUID": "dc29e3bf-d915-41c5-879f-dfb96b7f3fc2", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "aba499c9-7852-4fd4-bb5d-56c610a1fbc4", - "79369c7e-682c-423a-80a8-1ba6d42d1fb1", - "57ae2185-3dc2-4276-93b7-f14970e7b725", - "6ac7f496-481d-4764-be66-7dbe980c64d0", - "0c04fe9e-ca16-4ef0-a72e-ae33bb236b11" + "c108ce38-593e-44a2-8d1b-9ff2ba69174f", + "487c5ba7-6fa2-4f41-ad38-76e1db681dfd", + "d07e7e63-625d-4802-a56c-28b6dd61ddc9", + "933cab42-d49b-4173-94c6-ce3605e8a886", + "da50c4ad-59a1-406e-9ec7-786f87bac5f3" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "630ddd3e-f18c-4a2b-a8ec-2e69ae0ad37e", + "uuid": "4db36fb4-98c4-43fa-b40c-0203a0871021", "title": "timezone()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -5205,8 +5205,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar).timezone(\"Europe/Berlin\");assert.strictEqual(e.timezone(),\"Europe/Berlin\")", "err": {}, - "uuid": "03c13f89-e7e0-4ce6-b7e7-164020fe914a", - "parentUUID": "630ddd3e-f18c-4a2b-a8ec-2e69ae0ad37e", + "uuid": "5d1dbac1-ee19-4bcf-9cba-318357a3e3e5", + "parentUUID": "4db36fb4-98c4-43fa-b40c-0203a0871021", "isHook": false, "skipped": false }, @@ -5223,8 +5223,8 @@ "context": null, "code": "const cal=new ICalCalendar;const e=new ICalEvent({start:moment(),summary:\"Example Event\"},cal);assert.strictEqual(cal.timezone(),null);assert.strictEqual(e.timezone(),null);cal.timezone(\"Europe/London\");assert.strictEqual(cal.timezone(),\"Europe/London\");assert.strictEqual(e.timezone(),\"Europe/London\");e.timezone(\"Europe/Berlin\");assert.strictEqual(cal.timezone(),\"Europe/London\");assert.strictEqual(e.timezone(),\"Europe/Berlin\");cal.timezone(null);assert.strictEqual(cal.timezone(),null);assert.strictEqual(e.timezone(),\"Europe/Berlin\");e.timezone(null);assert.strictEqual(cal.timezone(),null);assert.strictEqual(e.timezone(),null)", "err": {}, - "uuid": "4edc41b9-2363-4130-82fd-eec317e2536f", - "parentUUID": "630ddd3e-f18c-4a2b-a8ec-2e69ae0ad37e", + "uuid": "6affb345-76c6-4d50-a84c-14a8a7305e70", + "parentUUID": "4db36fb4-98c4-43fa-b40c-0203a0871021", "isHook": false, "skipped": false }, @@ -5241,8 +5241,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.timezone(\"Europe/Berlin\"))", "err": {}, - "uuid": "d3c6270f-8864-445d-88ac-de283669c8c1", - "parentUUID": "630ddd3e-f18c-4a2b-a8ec-2e69ae0ad37e", + "uuid": "2cea283a-2438-4323-9d14-4387853edf4b", + "parentUUID": "4db36fb4-98c4-43fa-b40c-0203a0871021", "isHook": false, "skipped": false }, @@ -5250,7 +5250,7 @@ "title": "should update timezone", "fullTitle": "ical-generator Event timezone() should update timezone", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -5259,8 +5259,8 @@ "context": null, "code": "const e=new ICalEvent({start:moment(),end:new Date(new Date().getTime()+36e5),summary:\"Example Event\"},new ICalCalendar);e.timezone(\"Europe/London\");assert.strictEqual(e.timezone(),\"Europe/London\")", "err": {}, - "uuid": "479dac30-6884-4617-ae1f-a5ad845f4cd2", - "parentUUID": "630ddd3e-f18c-4a2b-a8ec-2e69ae0ad37e", + "uuid": "0109633d-89f5-4e87-bc9b-74d94e5c92b8", + "parentUUID": "4db36fb4-98c4-43fa-b40c-0203a0871021", "isHook": false, "skipped": false }, @@ -5277,8 +5277,8 @@ "context": null, "code": "const e=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);e.floating(true);e.timezone(\"Europe/London\");assert.strictEqual(e.floating(),false)", "err": {}, - "uuid": "506c765c-71d7-40b7-a53b-49d0aef90f6a", - "parentUUID": "630ddd3e-f18c-4a2b-a8ec-2e69ae0ad37e", + "uuid": "2352b233-735b-450a-b926-be186a8fec58", + "parentUUID": "4db36fb4-98c4-43fa-b40c-0203a0871021", "isHook": false, "skipped": false }, @@ -5295,8 +5295,8 @@ "context": null, "code": "const e=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);e.floating(true);e.timezone(null);assert.strictEqual(e.floating(),true)", "err": {}, - "uuid": "ae9e7866-88cf-47b2-a89b-4c5d94ab62f7", - "parentUUID": "630ddd3e-f18c-4a2b-a8ec-2e69ae0ad37e", + "uuid": "237d491c-e9e7-4910-b281-0c97d9e10d16", + "parentUUID": "4db36fb4-98c4-43fa-b40c-0203a0871021", "isHook": false, "skipped": false }, @@ -5313,32 +5313,32 @@ "context": null, "code": "const e=new ICalEvent({start:moment(),timezone:\"Europe/Berlin\",summary:\"Example Event\"},new ICalCalendar);assert.strictEqual(e.timezone(),\"Europe/Berlin\");e.timezone(\"UTC\");assert.strictEqual(e.timezone(),null)", "err": {}, - "uuid": "42bc9231-d4a7-4468-8af9-5e0d83d0d85f", - "parentUUID": "630ddd3e-f18c-4a2b-a8ec-2e69ae0ad37e", + "uuid": "28f558f1-2cef-4f84-bdb1-2045c373f58a", + "parentUUID": "4db36fb4-98c4-43fa-b40c-0203a0871021", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "03c13f89-e7e0-4ce6-b7e7-164020fe914a", - "4edc41b9-2363-4130-82fd-eec317e2536f", - "d3c6270f-8864-445d-88ac-de283669c8c1", - "479dac30-6884-4617-ae1f-a5ad845f4cd2", - "506c765c-71d7-40b7-a53b-49d0aef90f6a", - "ae9e7866-88cf-47b2-a89b-4c5d94ab62f7", - "42bc9231-d4a7-4468-8af9-5e0d83d0d85f" + "5d1dbac1-ee19-4bcf-9cba-318357a3e3e5", + "6affb345-76c6-4d50-a84c-14a8a7305e70", + "2cea283a-2438-4323-9d14-4387853edf4b", + "0109633d-89f5-4e87-bc9b-74d94e5c92b8", + "2352b233-735b-450a-b926-be186a8fec58", + "237d491c-e9e7-4910-b281-0c97d9e10d16", + "28f558f1-2cef-4f84-bdb1-2045c373f58a" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "ca702115-0dd9-491a-a70c-dacaf1add060", + "uuid": "969f51de-0d46-45ad-90f0-5fd9d18dfb3a", "title": "stamp()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -5358,8 +5358,8 @@ "context": null, "code": "const now=moment().add(1,\"day\");const e=new ICalEvent({start:new Date},new ICalCalendar).stamp(now);assert.deepStrictEqual(e.stamp(),now)", "err": {}, - "uuid": "1443e1a8-bfb7-44a0-aff6-b758f1f1974d", - "parentUUID": "ca702115-0dd9-491a-a70c-dacaf1add060", + "uuid": "0bdb29eb-30e8-4cd1-af5f-0fd052621dad", + "parentUUID": "969f51de-0d46-45ad-90f0-5fd9d18dfb3a", "isHook": false, "skipped": false }, @@ -5376,8 +5376,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\").toJSON();assert.deepStrictEqual(event,event.stamp(date));assert.deepStrictEqual(event.stamp(),date)", "err": {}, - "uuid": "51bcccec-c6d1-4c6b-92de-75569ad0047e", - "parentUUID": "ca702115-0dd9-491a-a70c-dacaf1add060", + "uuid": "0c2adee6-97d0-4f60-bb29-89f0466eb9a8", + "parentUUID": "969f51de-0d46-45ad-90f0-5fd9d18dfb3a", "isHook": false, "skipped": false }, @@ -5394,8 +5394,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\").toDate();assert.deepStrictEqual(event,event.stamp(date));assert.deepStrictEqual(event.stamp(),date)", "err": {}, - "uuid": "35e39229-c848-4087-83a0-f18622c364af", - "parentUUID": "ca702115-0dd9-491a-a70c-dacaf1add060", + "uuid": "d3172af2-7f27-4bd8-a4bd-f7d7c37c09fb", + "parentUUID": "969f51de-0d46-45ad-90f0-5fd9d18dfb3a", "isHook": false, "skipped": false }, @@ -5412,8 +5412,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){event.stamp(3)},/`stamp`/,\"Number\");assert.throws(function(){event.stamp(null)},/`stamp`/,\"null\");assert.throws(function(){event.stamp(NaN)},/`stamp`/,\"NaN\");assert.throws(function(){event.stamp(new Date(\"hallo\"))},/`stamp`/,\"Invalid Date\")", "err": {}, - "uuid": "dc4572fe-bdb9-47b0-85b9-99eac42a692a", - "parentUUID": "ca702115-0dd9-491a-a70c-dacaf1add060", + "uuid": "220fdc67-5064-4b28-90c8-392ba68d9f22", + "parentUUID": "969f51de-0d46-45ad-90f0-5fd9d18dfb3a", "isHook": false, "skipped": false }, @@ -5430,19 +5430,19 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.stamp(new Date))", "err": {}, - "uuid": "cf6cd160-1642-40ef-9365-4265ee3efbff", - "parentUUID": "ca702115-0dd9-491a-a70c-dacaf1add060", + "uuid": "b6765477-6215-41f4-ae63-909cb5cd761b", + "parentUUID": "969f51de-0d46-45ad-90f0-5fd9d18dfb3a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "1443e1a8-bfb7-44a0-aff6-b758f1f1974d", - "51bcccec-c6d1-4c6b-92de-75569ad0047e", - "35e39229-c848-4087-83a0-f18622c364af", - "dc4572fe-bdb9-47b0-85b9-99eac42a692a", - "cf6cd160-1642-40ef-9365-4265ee3efbff" + "0bdb29eb-30e8-4cd1-af5f-0fd052621dad", + "0c2adee6-97d0-4f60-bb29-89f0466eb9a8", + "d3172af2-7f27-4bd8-a4bd-f7d7c37c09fb", + "220fdc67-5064-4b28-90c8-392ba68d9f22", + "b6765477-6215-41f4-ae63-909cb5cd761b" ], "failures": [], "pending": [], @@ -5453,7 +5453,7 @@ "_timeout": 2000 }, { - "uuid": "6027cc23-e0b6-437d-bdfe-6099fe5dfb11", + "uuid": "a7ebadef-8374-4b8b-b9c0-3250d93cb440", "title": "timestamp()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -5473,8 +5473,8 @@ "context": null, "code": "const now=moment().add(1,\"day\");const e=new ICalEvent({start:new Date},new ICalCalendar).timestamp(now);assert.deepStrictEqual(e.timestamp(),now)", "err": {}, - "uuid": "34495131-d963-428e-bdf5-7a4bca92f5d9", - "parentUUID": "6027cc23-e0b6-437d-bdfe-6099fe5dfb11", + "uuid": "f37fb94a-6eb3-4daa-9ad5-9ebbd30a7dc7", + "parentUUID": "a7ebadef-8374-4b8b-b9c0-3250d93cb440", "isHook": false, "skipped": false }, @@ -5491,8 +5491,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\").toJSON();assert.deepStrictEqual(event,event.timestamp(date));assert.deepStrictEqual(event.stamp(),date)", "err": {}, - "uuid": "46044f11-feb9-4681-a845-d495728bf55a", - "parentUUID": "6027cc23-e0b6-437d-bdfe-6099fe5dfb11", + "uuid": "1ee44698-2016-4159-8289-4685556e304a", + "parentUUID": "a7ebadef-8374-4b8b-b9c0-3250d93cb440", "isHook": false, "skipped": false }, @@ -5509,8 +5509,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\").toDate();assert.deepStrictEqual(event,event.timestamp(date));assert.deepStrictEqual(event.stamp(),date)", "err": {}, - "uuid": "0b5f36ab-ae94-427e-9e53-e3ff1ddcab34", - "parentUUID": "6027cc23-e0b6-437d-bdfe-6099fe5dfb11", + "uuid": "dbd204ac-a0e3-431e-baa7-59c5405936a1", + "parentUUID": "a7ebadef-8374-4b8b-b9c0-3250d93cb440", "isHook": false, "skipped": false }, @@ -5527,8 +5527,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){event.timestamp(3)},/`stamp`/,\"Number\");assert.throws(function(){event.timestamp(null)},/`stamp`/,\"null\");assert.throws(function(){event.timestamp(NaN)},/`stamp`/,\"NaN\");assert.throws(function(){event.timestamp(new Date(\"hallo\"))},/`stamp`/,\"Invalid Date\")", "err": {}, - "uuid": "6c7113e1-8f91-4aa6-982f-0965812c7c48", - "parentUUID": "6027cc23-e0b6-437d-bdfe-6099fe5dfb11", + "uuid": "4b68ae73-f1c6-4099-ae46-d5fcd19ef87a", + "parentUUID": "a7ebadef-8374-4b8b-b9c0-3250d93cb440", "isHook": false, "skipped": false }, @@ -5545,19 +5545,19 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.timestamp(new Date))", "err": {}, - "uuid": "595e24b5-ce34-4062-821b-401455ee944b", - "parentUUID": "6027cc23-e0b6-437d-bdfe-6099fe5dfb11", + "uuid": "f40f8717-0d8e-42c4-8222-47488a4d7225", + "parentUUID": "a7ebadef-8374-4b8b-b9c0-3250d93cb440", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "34495131-d963-428e-bdf5-7a4bca92f5d9", - "46044f11-feb9-4681-a845-d495728bf55a", - "0b5f36ab-ae94-427e-9e53-e3ff1ddcab34", - "6c7113e1-8f91-4aa6-982f-0965812c7c48", - "595e24b5-ce34-4062-821b-401455ee944b" + "f37fb94a-6eb3-4daa-9ad5-9ebbd30a7dc7", + "1ee44698-2016-4159-8289-4685556e304a", + "dbd204ac-a0e3-431e-baa7-59c5405936a1", + "4b68ae73-f1c6-4099-ae46-d5fcd19ef87a", + "f40f8717-0d8e-42c4-8222-47488a4d7225" ], "failures": [], "pending": [], @@ -5568,7 +5568,7 @@ "_timeout": 2000 }, { - "uuid": "6d09f451-f432-437e-85e4-46b0f1ca0005", + "uuid": "49539070-b8d9-403e-9152-2fcd54b756c3", "title": "allDay()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -5588,8 +5588,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.allDay(true);assert.strictEqual(e.allDay(),true)", "err": {}, - "uuid": "82491f4e-484d-42ae-b5d9-18affcde3cf5", - "parentUUID": "6d09f451-f432-437e-85e4-46b0f1ca0005", + "uuid": "507d2f0c-afaa-4a27-b1a4-e09ec67f536e", + "parentUUID": "49539070-b8d9-403e-9152-2fcd54b756c3", "isHook": false, "skipped": false }, @@ -5606,8 +5606,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.allDay(true))", "err": {}, - "uuid": "c7845d33-5003-430f-96ad-d27b36f8579f", - "parentUUID": "6d09f451-f432-437e-85e4-46b0f1ca0005", + "uuid": "7f0ff86c-d8c3-40ec-bba9-c5767aae60fb", + "parentUUID": "49539070-b8d9-403e-9152-2fcd54b756c3", "isHook": false, "skipped": false }, @@ -5624,17 +5624,17 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);event.allDay(true);assert.strictEqual(event.allDay(),true)", "err": {}, - "uuid": "332f6487-73d0-4063-b5d3-92c3ce441423", - "parentUUID": "6d09f451-f432-437e-85e4-46b0f1ca0005", + "uuid": "a256e8e6-d6f8-423c-8612-2b1719376f39", + "parentUUID": "49539070-b8d9-403e-9152-2fcd54b756c3", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "82491f4e-484d-42ae-b5d9-18affcde3cf5", - "c7845d33-5003-430f-96ad-d27b36f8579f", - "332f6487-73d0-4063-b5d3-92c3ce441423" + "507d2f0c-afaa-4a27-b1a4-e09ec67f536e", + "7f0ff86c-d8c3-40ec-bba9-c5767aae60fb", + "a256e8e6-d6f8-423c-8612-2b1719376f39" ], "failures": [], "pending": [], @@ -5645,7 +5645,7 @@ "_timeout": 2000 }, { - "uuid": "73ea1f9e-f4a9-4ec7-817b-e241abbb75ba", + "uuid": "5a23dd56-c3c9-4498-9dea-b6d82eb328bd", "title": "floating()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -5665,8 +5665,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar).floating(true);assert.strictEqual(e.floating(),true)", "err": {}, - "uuid": "254f433f-4d02-41c7-bec0-5ec670c0d0a4", - "parentUUID": "73ea1f9e-f4a9-4ec7-817b-e241abbb75ba", + "uuid": "70cefa2d-9880-4200-a4b4-9e5f1048901d", + "parentUUID": "5a23dd56-c3c9-4498-9dea-b6d82eb328bd", "isHook": false, "skipped": false }, @@ -5683,8 +5683,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.floating(false));assert.deepStrictEqual(e,e.floating(true))", "err": {}, - "uuid": "995eaff5-54e2-4939-a586-40c7dc08ec9c", - "parentUUID": "73ea1f9e-f4a9-4ec7-817b-e241abbb75ba", + "uuid": "b8cb3e72-a68e-406d-850f-d03e2a0d6881", + "parentUUID": "5a23dd56-c3c9-4498-9dea-b6d82eb328bd", "isHook": false, "skipped": false }, @@ -5701,8 +5701,8 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);event.floating(true);assert.strictEqual(event.floating(),true)", "err": {}, - "uuid": "cd82e89e-91be-4991-b205-1f7851709c65", - "parentUUID": "73ea1f9e-f4a9-4ec7-817b-e241abbb75ba", + "uuid": "2202747d-7c0a-46ca-a1ee-414dbad45bf4", + "parentUUID": "5a23dd56-c3c9-4498-9dea-b6d82eb328bd", "isHook": false, "skipped": false }, @@ -5719,8 +5719,8 @@ "context": null, "code": "const e=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);e.timezone(\"Europe/London\");e.floating(true);assert.strictEqual(e.timezone(),null)", "err": {}, - "uuid": "60f20810-9f67-4fbd-8820-45afbd0fd2fe", - "parentUUID": "73ea1f9e-f4a9-4ec7-817b-e241abbb75ba", + "uuid": "4132947d-de27-45f1-add6-4d7063b04820", + "parentUUID": "5a23dd56-c3c9-4498-9dea-b6d82eb328bd", "isHook": false, "skipped": false }, @@ -5737,19 +5737,19 @@ "context": null, "code": "const e=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);e.timezone(\"Europe/London\");e.floating(false);assert.strictEqual(e.timezone(),\"Europe/London\")", "err": {}, - "uuid": "acf04bd1-755a-482d-b7b1-de679f70dad0", - "parentUUID": "73ea1f9e-f4a9-4ec7-817b-e241abbb75ba", + "uuid": "67aa74d3-cf5f-4779-8bb4-85edb6ec0f54", + "parentUUID": "5a23dd56-c3c9-4498-9dea-b6d82eb328bd", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "254f433f-4d02-41c7-bec0-5ec670c0d0a4", - "995eaff5-54e2-4939-a586-40c7dc08ec9c", - "cd82e89e-91be-4991-b205-1f7851709c65", - "60f20810-9f67-4fbd-8820-45afbd0fd2fe", - "acf04bd1-755a-482d-b7b1-de679f70dad0" + "70cefa2d-9880-4200-a4b4-9e5f1048901d", + "b8cb3e72-a68e-406d-850f-d03e2a0d6881", + "2202747d-7c0a-46ca-a1ee-414dbad45bf4", + "4132947d-de27-45f1-add6-4d7063b04820", + "67aa74d3-cf5f-4779-8bb4-85edb6ec0f54" ], "failures": [], "pending": [], @@ -5760,7 +5760,7 @@ "_timeout": 2000 }, { - "uuid": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "title": "repeating()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -5780,8 +5780,8 @@ "context": null, "code": "const options={freq:ICalEventRepeatingFreq.MONTHLY,count:5,interval:2,until:moment(),exclude:[moment()]};const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e.repeating(),null);e.repeating(options);assert.strictEqual(JSON.stringify(e.repeating(),null,\" \"),JSON.stringify(options,null,\" \"));e.repeating(null);assert.deepStrictEqual(e.repeating(),null)", "err": {}, - "uuid": "37e83108-2b45-4b69-8233-aed58b1dc626", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "59328fc9-9388-4adc-a9f1-688e27f7528e", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -5798,8 +5798,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.repeating(null));assert.deepStrictEqual(e.repeating(),null)", "err": {}, - "uuid": "80fd2984-a9ac-4e65-99f6-0bff0da2f280", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "b7cfb621-65b1-469d-9706-84aeaf0ecd6d", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -5816,8 +5816,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.repeating(null),\"repeating(null)\");assert.deepStrictEqual(e,e.repeating({freq:ICalEventRepeatingFreq.MONTHLY}),\"repeating({freq: 'MONTHLY'})\")", "err": {}, - "uuid": "5bdcde79-e48e-484d-8523-5981ec2a5fd8", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "cf43a9f4-7167-4d13-ae16-8a15bc854742", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -5825,7 +5825,7 @@ "title": "setter should throw error when repeating without freq", "fullTitle": "ical-generator Event repeating() setter should throw error when repeating without freq", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -5834,8 +5834,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{}},new ICalCalendar)},/Input must be one of the following: SECONDLY, MINUTELY, HOURLY, DAILY, WEEKLY, MONTHLY, YEARLY/)", "err": {}, - "uuid": "b238a135-23d3-440f-9a6e-d97d5634550b", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "1a0a1208-c1c6-4128-a345-e5e9b2376aa5", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -5852,8 +5852,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{freq:\"hello\"}},new ICalCalendar)},/must be one of the following/)", "err": {}, - "uuid": "dc492efe-67ae-4521-9e4d-02b53230dc48", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "02fa0958-7678-4e86-ace6-ffd69fdfac88", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -5870,8 +5870,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.repeating({freq:ICalEventRepeatingFreq.MONTHLY});const result=e.repeating();assert.ok(result);assert.ok(!isRRule(result));assert.ok(typeof result!==\"string\");assert.strictEqual(result.freq,\"MONTHLY\")", "err": {}, - "uuid": "1e78d814-0778-4ab6-a196-ef717b68c4cf", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "de0f06cb-f06c-45b3-a41b-25d718cf8281", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -5879,7 +5879,7 @@ "title": "setter should throw error when repeating.count is not a number", "fullTitle": "ical-generator Event repeating() setter should throw error when repeating.count is not a number", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -5888,8 +5888,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,count:Infinity}},new ICalCalendar)},/`repeating.count` must be a finite number!/);assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,count:\"abc\"}},new ICalCalendar)},/`repeating\\.count` must be a finite number!/)", "err": {}, - "uuid": "5aa27c64-07a9-4893-a82b-e6bbf2668a88", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "c45cba3f-ec78-43ec-b131-cc313d99ea3d", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -5897,7 +5897,7 @@ "title": "setter should update count", "fullTitle": "ical-generator Event repeating() setter should update count", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -5906,8 +5906,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.repeating({freq:ICalEventRepeatingFreq.MONTHLY,count:5});const result=e.repeating();assert.ok(result);assert.ok(!isRRule(result));assert.ok(typeof result!==\"string\");assert.strictEqual(result.count,5)", "err": {}, - "uuid": "afd20ae9-7a0e-4360-b37b-3f9072fed174", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "ad31d7d4-990e-408e-a406-a2d604ddc08d", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -5924,8 +5924,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:Infinity}},new ICalCalendar)},/`repeating.interval` must be a finite number!/);assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:\"abc\"}},new ICalCalendar)},/`repeating.interval` must be a finite number!/)", "err": {}, - "uuid": "428e75cb-5bac-44b2-9f3c-b9a0eb09a0dc", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "c202a931-56fa-4eba-8d01-aba8ccb29eb6", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -5942,8 +5942,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.repeating({freq:ICalEventRepeatingFreq.MONTHLY,interval:5});const result=e.repeating();assert.ok(result);assert.ok(!isRRule(result));assert.ok(typeof result!==\"string\");assert.strictEqual(result.interval,5)", "err": {}, - "uuid": "4d4c30c2-e01d-4d6e-925b-233922f646da", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "d4370b50-028a-4885-9e94-b138bdd348ba", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -5951,7 +5951,7 @@ "title": "should throw error when repeating.until is not a date", "fullTitle": "ical-generator Event repeating() should throw error when repeating.until is not a date", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -5960,8 +5960,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,until:null}},new ICalCalendar)},/Error: `repeating\\.until` has to be a valid date!/)", "err": {}, - "uuid": "97fbca39-1427-4c42-9c6b-95a486c7ee0b", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "8127f699-5249-4024-8a07-ee5f9ae23f89", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -5969,7 +5969,7 @@ "title": "setter should parse repeating.until string if required", "fullTitle": "ical-generator Event repeating() setter should parse repeating.until string if required", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -5978,8 +5978,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\").toJSON();event.repeating({freq:ICalEventRepeatingFreq.MONTHLY,until:date});const result=event.repeating();assert.ok(result);assert.ok(!isRRule(result));assert.ok(typeof result!==\"string\");assert.deepStrictEqual(result.until,date)", "err": {}, - "uuid": "798754d9-fc93-4418-800a-782ee2bde381", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "49a5f106-6e0f-4aa1-9e49-b87c56da2a3e", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -5996,8 +5996,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\").toDate();event.repeating({freq:ICalEventRepeatingFreq.MONTHLY,until:date});const result=event.repeating();assert.ok(result);assert.ok(!isRRule(result));assert.ok(typeof result!==\"string\");assert.deepStrictEqual(result.until,date)", "err": {}, - "uuid": "37d4df87-e4ee-4c2c-9e54-663337d7efa2", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "9e81da6b-857a-47df-a6ba-d06975649324", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6014,8 +6014,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\");event.repeating({freq:ICalEventRepeatingFreq.MONTHLY,until:date});const result=event.repeating();assert.ok(result);assert.ok(!isRRule(result));assert.ok(typeof result!==\"string\");assert.deepStrictEqual(result.until,date)", "err": {}, - "uuid": "e8473d64-c9a8-4f59-94a5-ed40c961fd75", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "6e3986e3-4b66-4ced-9f55-12e2462a0ed5", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6032,8 +6032,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){event.repeating({freq:ICalEventRepeatingFreq.MONTHLY,until:3})},/`repeating.until`/,\"Number\");assert.throws(function(){event.repeating({freq:ICalEventRepeatingFreq.MONTHLY,until:null})},/`repeating.until`/,\"null\");assert.throws(function(){event.repeating({freq:ICalEventRepeatingFreq.MONTHLY,until:NaN})},/`repeating.until`/,\"NaN\");assert.throws(function(){event.repeating({freq:ICalEventRepeatingFreq.MONTHLY,until:new Date(\"foo\")})},/`repeating.until`/,\"Invalid Date\")", "err": {}, - "uuid": "3fb1093e-d7b5-422d-8f0b-ba30dc1f6477", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "0eb225e9-f421-49a3-993f-9ce1b3cc11de", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6050,8 +6050,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,byDay:\"FOO\"}},new ICalCalendar)},/Input must be one of the following: SU, MO, TU, WE, TH, FR, SA/);assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,byDay:[\"SU\",\"BAR\",\"th\"]}},new ICalCalendar)},/Input must be one of the following: SU, MO, TU, WE, TH, FR, SA/);assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,byDay:[\"SU\",Infinity,\"th\"]}},new ICalCalendar)},/Input must be one of the following: SU, MO, TU, WE, TH, FR, SA/)", "err": {}, - "uuid": "60ffa3ee-c17c-4211-a82a-664fff7f4472", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "67ed6a9a-fb7e-47e3-a3a2-ad6b1122e45b", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6068,8 +6068,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.repeating({freq:ICalEventRepeatingFreq.MONTHLY,byDay:[ICalWeekday.SU,ICalWeekday.WE,ICalWeekday.TH]});const result=e.repeating();assert.ok(result);assert.ok(!isRRule(result));assert.ok(typeof result!==\"string\");assert.deepStrictEqual(result.byDay,[\"SU\",\"WE\",\"TH\"])", "err": {}, - "uuid": "8f5d13d2-9c51-47da-b29c-0eff9d41e693", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "9285045f-ec0a-43d2-b94a-c981fc5870c1", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6086,8 +6086,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,byMonth:\"FOO\"}},new ICalCalendar)},/`repeating\\.byMonth` contains invalid value `FOO`/);assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,byMonth:[1,14,7]}},new ICalCalendar)},/`repeating\\.byMonth` contains invalid value `14`/)", "err": {}, - "uuid": "7ca82a33-9c16-4174-9a25-2a0546877767", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "cbde6ca4-01e6-46c3-a0cd-908cc03fc455", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6104,8 +6104,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.repeating({freq:ICalEventRepeatingFreq.MONTHLY,byMonth:[1,12,7]});const result=e.repeating();assert.ok(result);assert.ok(!isRRule(result));assert.ok(typeof result!==\"string\");assert.deepStrictEqual(result.byMonth,[1,12,7])", "err": {}, - "uuid": "26a2716e-2c25-42b9-8548-3732b2c637e3", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "b53dd38c-5222-43d7-a319-8990728158ca", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6113,7 +6113,7 @@ "title": "should throw error when repeating.byMonthDay is not valid", "fullTitle": "ical-generator Event repeating() should throw error when repeating.byMonthDay is not valid", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -6122,8 +6122,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),end:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,byMonthDay:\"FOO\"}},new ICalCalendar)},/`repeating\\.byMonthDay` contains invalid value `FOO`/);assert.throws(function(){new ICalEvent({start:moment(),end:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,byMonthDay:[1,32,-15]}},new ICalCalendar)},/`repeating\\.byMonthDay` contains invalid value `32`/);assert.throws(function(){new ICalEvent({start:moment(),end:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,byMonthDay:[-1,-32,15]}},new ICalCalendar)},/`repeating\\.byMonthDay` contains invalid value `-32`/);assert.throws(function(){new ICalEvent({start:moment(),end:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,byMonthDay:[1,0,15]}},new ICalCalendar)},/`repeating\\.byMonthDay` contains invalid value `0`/)", "err": {}, - "uuid": "931236fa-4d2a-491f-9d15-b6ccc9552404", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "eac22a72-2b5e-4f19-84b2-e1b7f971061a", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6140,8 +6140,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.repeating({freq:ICalEventRepeatingFreq.MONTHLY,byMonthDay:[1,15]});const result=e.repeating();assert.ok(result);assert.ok(!isRRule(result));assert.ok(typeof result!==\"string\");assert.deepStrictEqual(result.byMonthDay,[1,15])", "err": {}, - "uuid": "791fffe0-00f6-4822-80d6-761e6562bc21", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "ea754bcf-502b-4d6c-a999-8d6c4da807a8", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6149,7 +6149,7 @@ "title": "should throw error when repeating.bySetPos is not valid", "fullTitle": "ical-generator Event repeating() should throw error when repeating.bySetPos is not valid", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -6158,8 +6158,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),end:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.MONTHLY,interval:2,byDay:[ICalWeekday.SU],bySetPos:[367]}},new ICalCalendar)},/`repeating\\.bySetPos` contains invalid value `367`/);assert.throws(function(){new ICalEvent({start:moment(),end:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.MONTHLY,interval:2,byDay:[ICalWeekday.SU],bySetPos:[-367]}},new ICalCalendar)},/`repeating\\.bySetPos` contains invalid value `-367`/);assert.throws(function(){new ICalEvent({start:moment(),end:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.MONTHLY,interval:2,byDay:[ICalWeekday.SU],bySetPos:[0]}},new ICalCalendar)},/`repeating\\.bySetPos` contains invalid value `0`/);assert.throws(function(){new ICalEvent({start:moment(),end:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.MONTHLY,interval:2,byDay:[ICalWeekday.SU],bySetPos:[\"FOO\"]}},new ICalCalendar)},/`repeating\\.bySetPos` contains invalid value `FOO`/)", "err": {}, - "uuid": "1e398a69-f36b-4fe9-8590-63cff4be3434", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "f8680840-2393-4d0f-bdc3-86b938713841", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6167,7 +6167,7 @@ "title": "should throw error when repeating.byDay is not present with repeating.bySetPos", "fullTitle": "ical-generator Event repeating() should throw error when repeating.byDay is not present with repeating.bySetPos", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -6176,8 +6176,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),end:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.MONTHLY,interval:2,bySetPos:6}},new ICalCalendar)},/`repeating\\.bySetPos` must be used along with `repeating\\.byDay`/)", "err": {}, - "uuid": "1efc7510-871d-4acf-ac79-4377420e09be", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "f54e065a-fe24-40c0-a0c8-ec30d13f1a39", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6194,8 +6194,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.repeating({freq:ICalEventRepeatingFreq.MONTHLY,byDay:[ICalWeekday.SU],bySetPos:[2]});const result=e.repeating();assert.ok(result);assert.ok(!isRRule(result));assert.ok(typeof result!==\"string\");assert.strictEqual(result.byDay?.length,1);assert.strictEqual(result.bySetPos?.length,1)", "err": {}, - "uuid": "86d5fc5e-b182-4ded-8afc-b7d4918e1457", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "c2bf7abc-53ea-43ec-9816-bb63c1b9e882", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6212,8 +6212,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),end:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,byDay:[ICalWeekday.SU],exclude:new Date(\"FOO\")}},new ICalCalendar)},/has to be a valid date/)", "err": {}, - "uuid": "b9b86a1d-898a-42ad-be65-029718e711d4", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "095fff9b-867a-4f24-9aad-4e9c1ecdbf0a", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6221,7 +6221,7 @@ "title": "should throw error when repeating.exclude is not valid (should throw on first err value", "fullTitle": "ical-generator Event repeating() should throw error when repeating.exclude is not valid (should throw on first err value", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -6230,8 +6230,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),end:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,byDay:[ICalWeekday.SU],exclude:[moment(),new Date(\"BAR\"),\"FOO\"]}},new ICalCalendar)},/has to be a valid date/)", "err": {}, - "uuid": "005b0451-3e6e-4e43-8f07-5fee106b2573", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "8d278c30-6956-4917-beaa-bdfdd575babd", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6248,8 +6248,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),end:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,byDay:[ICalWeekday.SU],exclude:42}},new ICalCalendar)},/`repeating.exclude\\[0\\]` has to be a valid date!/)", "err": {}, - "uuid": "4838b2da-e8d6-40fc-805c-56668e004621", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "f023ccb4-e2b8-4705-a6db-d42edeaf35f6", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6266,8 +6266,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().add(1,\"week\");e.repeating({freq:ICalEventRepeatingFreq.MONTHLY,exclude:[date.toJSON(),date.toDate(),date]});const result=e.repeating();assert.ok(result);assert.ok(!isRRule(result));assert.ok(typeof result!==\"string\");assert.ok(Array.isArray(result.exclude));assert.strictEqual(result.exclude.length,3);assert.deepStrictEqual(result.exclude[0],date.toJSON(),\"String\");assert.deepStrictEqual(result.exclude[1],date.toDate(),\"Date\");assert.deepStrictEqual(result.exclude[2],date,\"Moment\")", "err": {}, - "uuid": "950aab0e-ada5-497e-bcd4-76069ed4df35", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "72cf3696-3b7e-4ec0-a4d6-28d8458641a6", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6275,7 +6275,7 @@ "title": "should throw error when repeating.startOfWeek is not valid", "fullTitle": "ical-generator Event repeating() should throw error when repeating.startOfWeek is not valid", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -6284,8 +6284,8 @@ "context": null, "code": "assert.throws(function(){new ICalEvent({start:moment(),summary:\"test\",repeating:{freq:ICalEventRepeatingFreq.DAILY,interval:2,startOfWeek:\"FOO\"}},new ICalCalendar)},/Input must be one of the following: SU, MO, TU, WE, TH, FR, SA/)", "err": {}, - "uuid": "905bde0f-642a-4684-804e-3fb75f1aaccb", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "614addc6-b931-4fa3-9023-af0311d25183", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6293,7 +6293,7 @@ "title": "setter should update repeating.wkst", "fullTitle": "ical-generator Event repeating() setter should update repeating.wkst", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -6302,8 +6302,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.repeating({freq:ICalEventRepeatingFreq.MONTHLY,startOfWeek:ICalWeekday.SU});const result=e.repeating();assert.ok(result);assert.ok(!isRRule(result));assert.ok(typeof result!==\"string\");assert.deepStrictEqual(result.startOfWeek,\"SU\")", "err": {}, - "uuid": "e12fcaec-0362-4ba1-97b2-077164ffb07c", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "8c33e611-e0d6-4e08-a2d7-7d91e782c3ff", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6320,8 +6320,8 @@ "context": null, "code": "const start=new Date(Date.UTC(2012,1,1,10,30));const e=new ICalEvent({start},new ICalCalendar);const rule=new rrule.RRule({freq:rrule.RRule.WEEKLY,interval:5,byweekday:[rrule.RRule.MO,rrule.RRule.FR],dtstart:start,until:new Date(Date.UTC(2012,12,31))});e.repeating(rule);const result=e.repeating();assert.ok(isRRule(result));assert.deepStrictEqual(result,rule);assert.ok(e.toString().includes(\"RRULE:FREQ=WEEKLY;INTERVAL=5;BYDAY=MO,FR;UNTIL=20130131T000000Z\"))", "err": {}, - "uuid": "6bc2cfad-6d6c-43cf-a1e0-bbea750cd775", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "212527ec-f3a2-4e86-adbd-f25bbb46f7bb", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6329,7 +6329,7 @@ "title": "should support strings", "fullTitle": "ical-generator Event repeating() should support strings", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -6338,8 +6338,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);const rule=\"RRULE:FREQ=WEEKLY;INTERVAL=5;BYDAY=MO,FR;UNTIL=20130131T000000Z\";e.repeating(rule);const result=e.repeating();assert.deepStrictEqual(result,rule);assert.ok(e.toString().includes(\"RRULE:FREQ=WEEKLY;INTERVAL=5;BYDAY=MO,FR;UNTIL=20130131T000000Z\"))", "err": {}, - "uuid": "c84bf89a-e639-49d4-ab1b-63ecd3e6a183", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "72a7741f-375f-4dc5-9e33-a249f998f015", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false }, @@ -6356,47 +6356,47 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);const rule=\"FREQ=WEEKLY;INTERVAL=5;BYDAY=MO,FR;UNTIL=20130131T000000Z\";e.repeating(rule);const result=e.repeating();assert.deepStrictEqual(result,rule);assert.ok(e.toString().includes(\"RRULE:FREQ=WEEKLY;INTERVAL=5;BYDAY=MO,FR;UNTIL=20130131T000000Z\"))", "err": {}, - "uuid": "ef7660fd-cded-49ee-9d2d-977fa2dd4cf3", - "parentUUID": "4c6578a0-f210-4d0b-88c7-a8b02de632d7", + "uuid": "e6bab02f-3f58-431d-8c1b-6f2c1ad8f823", + "parentUUID": "320cfd11-4db1-45cd-a6f7-c03dac93b951", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "37e83108-2b45-4b69-8233-aed58b1dc626", - "80fd2984-a9ac-4e65-99f6-0bff0da2f280", - "5bdcde79-e48e-484d-8523-5981ec2a5fd8", - "b238a135-23d3-440f-9a6e-d97d5634550b", - "dc492efe-67ae-4521-9e4d-02b53230dc48", - "1e78d814-0778-4ab6-a196-ef717b68c4cf", - "5aa27c64-07a9-4893-a82b-e6bbf2668a88", - "afd20ae9-7a0e-4360-b37b-3f9072fed174", - "428e75cb-5bac-44b2-9f3c-b9a0eb09a0dc", - "4d4c30c2-e01d-4d6e-925b-233922f646da", - "97fbca39-1427-4c42-9c6b-95a486c7ee0b", - "798754d9-fc93-4418-800a-782ee2bde381", - "37d4df87-e4ee-4c2c-9e54-663337d7efa2", - "e8473d64-c9a8-4f59-94a5-ed40c961fd75", - "3fb1093e-d7b5-422d-8f0b-ba30dc1f6477", - "60ffa3ee-c17c-4211-a82a-664fff7f4472", - "8f5d13d2-9c51-47da-b29c-0eff9d41e693", - "7ca82a33-9c16-4174-9a25-2a0546877767", - "26a2716e-2c25-42b9-8548-3732b2c637e3", - "931236fa-4d2a-491f-9d15-b6ccc9552404", - "791fffe0-00f6-4822-80d6-761e6562bc21", - "1e398a69-f36b-4fe9-8590-63cff4be3434", - "1efc7510-871d-4acf-ac79-4377420e09be", - "86d5fc5e-b182-4ded-8afc-b7d4918e1457", - "b9b86a1d-898a-42ad-be65-029718e711d4", - "005b0451-3e6e-4e43-8f07-5fee106b2573", - "4838b2da-e8d6-40fc-805c-56668e004621", - "950aab0e-ada5-497e-bcd4-76069ed4df35", - "905bde0f-642a-4684-804e-3fb75f1aaccb", - "e12fcaec-0362-4ba1-97b2-077164ffb07c", - "6bc2cfad-6d6c-43cf-a1e0-bbea750cd775", - "c84bf89a-e639-49d4-ab1b-63ecd3e6a183", - "ef7660fd-cded-49ee-9d2d-977fa2dd4cf3" + "59328fc9-9388-4adc-a9f1-688e27f7528e", + "b7cfb621-65b1-469d-9706-84aeaf0ecd6d", + "cf43a9f4-7167-4d13-ae16-8a15bc854742", + "1a0a1208-c1c6-4128-a345-e5e9b2376aa5", + "02fa0958-7678-4e86-ace6-ffd69fdfac88", + "de0f06cb-f06c-45b3-a41b-25d718cf8281", + "c45cba3f-ec78-43ec-b131-cc313d99ea3d", + "ad31d7d4-990e-408e-a406-a2d604ddc08d", + "c202a931-56fa-4eba-8d01-aba8ccb29eb6", + "d4370b50-028a-4885-9e94-b138bdd348ba", + "8127f699-5249-4024-8a07-ee5f9ae23f89", + "49a5f106-6e0f-4aa1-9e49-b87c56da2a3e", + "9e81da6b-857a-47df-a6ba-d06975649324", + "6e3986e3-4b66-4ced-9f55-12e2462a0ed5", + "0eb225e9-f421-49a3-993f-9ce1b3cc11de", + "67ed6a9a-fb7e-47e3-a3a2-ad6b1122e45b", + "9285045f-ec0a-43d2-b94a-c981fc5870c1", + "cbde6ca4-01e6-46c3-a0cd-908cc03fc455", + "b53dd38c-5222-43d7-a319-8990728158ca", + "eac22a72-2b5e-4f19-84b2-e1b7f971061a", + "ea754bcf-502b-4d6c-a999-8d6c4da807a8", + "f8680840-2393-4d0f-bdc3-86b938713841", + "f54e065a-fe24-40c0-a0c8-ec30d13f1a39", + "c2bf7abc-53ea-43ec-9816-bb63c1b9e882", + "095fff9b-867a-4f24-9aad-4e9c1ecdbf0a", + "8d278c30-6956-4917-beaa-bdfdd575babd", + "f023ccb4-e2b8-4705-a6db-d42edeaf35f6", + "72cf3696-3b7e-4ec0-a4d6-28d8458641a6", + "614addc6-b931-4fa3-9023-af0311d25183", + "8c33e611-e0d6-4e08-a2d7-7d91e782c3ff", + "212527ec-f3a2-4e86-adbd-f25bbb46f7bb", + "72a7741f-375f-4dc5-9e33-a249f998f015", + "e6bab02f-3f58-431d-8c1b-6f2c1ad8f823" ], "failures": [], "pending": [], @@ -6407,7 +6407,7 @@ "_timeout": 2000 }, { - "uuid": "5c2f4faf-25ca-44a4-9ea5-c213c79ae04f", + "uuid": "b83d6b42-3055-4d91-aba0-759447384501", "title": "summary()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -6427,8 +6427,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(e.summary(),\"\");e.summary(\"Testevent\");assert.strictEqual(e.summary(),\"Testevent\")", "err": {}, - "uuid": "a289dd8d-a82e-49b2-88d6-74a5ce77dab1", - "parentUUID": "5c2f4faf-25ca-44a4-9ea5-c213c79ae04f", + "uuid": "70e02a7d-acf5-4e83-8aa9-7848cbf3770c", + "parentUUID": "b83d6b42-3055-4d91-aba0-759447384501", "isHook": false, "skipped": false }, @@ -6445,8 +6445,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.summary(\"\"));assert.deepStrictEqual(e,e.summary(\"Testevent\"))", "err": {}, - "uuid": "a7a689b2-46c9-425f-8ea1-4719c742ca23", - "parentUUID": "5c2f4faf-25ca-44a4-9ea5-c213c79ae04f", + "uuid": "47917ea6-6cf8-4c2c-8b80-e219ead73343", + "parentUUID": "b83d6b42-3055-4d91-aba0-759447384501", "isHook": false, "skipped": false }, @@ -6463,17 +6463,17 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);event.summary(\"Example Event II\");assert.strictEqual(event.summary(),\"Example Event II\");event.summary(\"\");assert.strictEqual(event.summary(),\"\")", "err": {}, - "uuid": "893f8465-fa1c-4753-a5ed-aaf95d9a4db7", - "parentUUID": "5c2f4faf-25ca-44a4-9ea5-c213c79ae04f", + "uuid": "9beea99b-db0b-4a8e-bfd0-92cf23bf6c36", + "parentUUID": "b83d6b42-3055-4d91-aba0-759447384501", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "a289dd8d-a82e-49b2-88d6-74a5ce77dab1", - "a7a689b2-46c9-425f-8ea1-4719c742ca23", - "893f8465-fa1c-4753-a5ed-aaf95d9a4db7" + "70e02a7d-acf5-4e83-8aa9-7848cbf3770c", + "47917ea6-6cf8-4c2c-8b80-e219ead73343", + "9beea99b-db0b-4a8e-bfd0-92cf23bf6c36" ], "failures": [], "pending": [], @@ -6484,7 +6484,7 @@ "_timeout": 2000 }, { - "uuid": "6d47c42b-4824-4007-a700-551102f42bd7", + "uuid": "2c7a74ac-6017-4600-9da9-20995b2046c0", "title": "location()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -6504,8 +6504,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(e.location(),null);e.location(\"Test Location\");assert.deepStrictEqual(e.location(),{title:\"Test Location\"});e.location(null);assert.strictEqual(e.location(),null)", "err": {}, - "uuid": "42c3d932-77ff-4851-9f97-57313be075aa", - "parentUUID": "6d47c42b-4824-4007-a700-551102f42bd7", + "uuid": "156e3b7b-151f-4f09-81ef-bb33d27d48aa", + "parentUUID": "2c7a74ac-6017-4600-9da9-20995b2046c0", "isHook": false, "skipped": false }, @@ -6522,8 +6522,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(e.location(),null);e.location({title:\"Foo\",geo:{lat:44.5,lon:-3.4}});const location=e.location();assert.ok(location);assert.ok(\"title\"in location);assert.deepStrictEqual(location?.title,\"Foo\");assert.deepStrictEqual(location?.geo,{lat:44.5,lon:-3.4});e.location(null);assert.strictEqual(e.location(),null)", "err": {}, - "uuid": "98321bb6-3f24-4da4-af9c-b308bb8d2f09", - "parentUUID": "6d47c42b-4824-4007-a700-551102f42bd7", + "uuid": "c4b575f0-8b11-4c06-bc35-29964ce111ae", + "parentUUID": "2c7a74ac-6017-4600-9da9-20995b2046c0", "isHook": false, "skipped": false }, @@ -6540,8 +6540,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.location(null));assert.deepStrictEqual(e,e.location(\"Test Location\"))", "err": {}, - "uuid": "a8ac7905-4ddc-45b5-8dbc-f91a4a3284bc", - "parentUUID": "6d47c42b-4824-4007-a700-551102f42bd7", + "uuid": "08403e7d-5b13-40d2-9f3a-82008adc39cb", + "parentUUID": "2c7a74ac-6017-4600-9da9-20995b2046c0", "isHook": false, "skipped": false }, @@ -6558,8 +6558,8 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);event.location(\"Europa-Park\");const location=event.location();assert.ok(location);assert.ok(\"title\"in location);assert.strictEqual(location?.title,\"Europa-Park\")", "err": {}, - "uuid": "3365d4a0-cd65-47ba-8605-fd4c5a106113", - "parentUUID": "6d47c42b-4824-4007-a700-551102f42bd7", + "uuid": "2128842a-38ee-4de3-a3ed-61291a30e4f5", + "parentUUID": "2c7a74ac-6017-4600-9da9-20995b2046c0", "isHook": false, "skipped": false }, @@ -6576,19 +6576,19 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);assert.throws(()=>event.location({geo:3}),/`location` isn't formatted correctly/i);assert.throws(()=>event.location({}),/`location` isn't formatted correctly/i)", "err": {}, - "uuid": "4152448d-0014-4acd-88ed-d212b487ffe9", - "parentUUID": "6d47c42b-4824-4007-a700-551102f42bd7", + "uuid": "edeba5ea-faea-4d84-a4d1-a185d5b926c7", + "parentUUID": "2c7a74ac-6017-4600-9da9-20995b2046c0", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "42c3d932-77ff-4851-9f97-57313be075aa", - "98321bb6-3f24-4da4-af9c-b308bb8d2f09", - "a8ac7905-4ddc-45b5-8dbc-f91a4a3284bc", - "3365d4a0-cd65-47ba-8605-fd4c5a106113", - "4152448d-0014-4acd-88ed-d212b487ffe9" + "156e3b7b-151f-4f09-81ef-bb33d27d48aa", + "c4b575f0-8b11-4c06-bc35-29964ce111ae", + "08403e7d-5b13-40d2-9f3a-82008adc39cb", + "2128842a-38ee-4de3-a3ed-61291a30e4f5", + "edeba5ea-faea-4d84-a4d1-a185d5b926c7" ], "failures": [], "pending": [], @@ -6599,7 +6599,7 @@ "_timeout": 2000 }, { - "uuid": "3f159618-adc6-414d-8268-6717ddf48949", + "uuid": "8ac9c772-377a-4901-96de-657ebcd0b3df", "title": "description()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -6619,8 +6619,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(e.description(),null);e.description(\"I don't need a description. I'm far to awesome for descriptions\\u2026\");assert.deepStrictEqual(e.description(),{plain:\"I don't need a description. I'm far to awesome for descriptions\\u2026\"});e.description({plain:\"I don't need a description. I'm far to awesome for descriptions\\u2026\",html:\"I don't need a description.
    I'm far to awesome for descriptions\\u2026\"});assert.deepStrictEqual(e.description(),{plain:\"I don't need a description. I'm far to awesome for descriptions\\u2026\",html:\"I don't need a description.
    I'm far to awesome for descriptions\\u2026\"});e.description(null);assert.strictEqual(e.description(),null)", "err": {}, - "uuid": "1ebd33d6-652c-432b-b3d3-2db6058ca049", - "parentUUID": "3f159618-adc6-414d-8268-6717ddf48949", + "uuid": "48588cdd-410b-42f4-9e3a-5dccccc3b91c", + "parentUUID": "8ac9c772-377a-4901-96de-657ebcd0b3df", "isHook": false, "skipped": false }, @@ -6628,7 +6628,7 @@ "title": "setter should return this", "fullTitle": "ical-generator Event description() setter should return this", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -6637,8 +6637,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.description(null));assert.deepStrictEqual(e,e.description(\"I don't need a description. I'm far to awesome for descriptions\\u2026\"))", "err": {}, - "uuid": "4e7ffb29-713b-4e18-a621-abedb914af89", - "parentUUID": "3f159618-adc6-414d-8268-6717ddf48949", + "uuid": "6134764e-1c2d-4a19-b94c-65c31f9a3eee", + "parentUUID": "8ac9c772-377a-4901-96de-657ebcd0b3df", "isHook": false, "skipped": false }, @@ -6655,28 +6655,28 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);event.description(\"Well. But other people need descriptions\\u2026 :/\");assert.deepStrictEqual(event.description(),{plain:\"Well. But other people need descriptions\\u2026 :/\"});event.description({plain:\"I am uncool text.\",html:\"I'm the best HTML tag in this universe!\"});assert.ok(event.toString().includes(\"I'm the best HTML tag in this universe!\"))", "err": {}, - "uuid": "11d9f3ef-b8e2-41c6-91d3-e1ebc1626a00", - "parentUUID": "3f159618-adc6-414d-8268-6717ddf48949", + "uuid": "648b6d13-3e43-4913-99c9-11ae908dcb3c", + "parentUUID": "8ac9c772-377a-4901-96de-657ebcd0b3df", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "1ebd33d6-652c-432b-b3d3-2db6058ca049", - "4e7ffb29-713b-4e18-a621-abedb914af89", - "11d9f3ef-b8e2-41c6-91d3-e1ebc1626a00" + "48588cdd-410b-42f4-9e3a-5dccccc3b91c", + "6134764e-1c2d-4a19-b94c-65c31f9a3eee", + "648b6d13-3e43-4913-99c9-11ae908dcb3c" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "8e724dcf-14f1-4baf-9441-905ff5ee2a5e", + "uuid": "e41faa7d-2267-41c7-bd02-fa0d47ee9ac2", "title": "organizer()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -6696,8 +6696,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(e.organizer(),null);e.organizer(null);assert.strictEqual(e.organizer(),null);e.organizer({name:\"Sebastian Pekarek\",email:\"mail@example.com\"});assert.strictEqual(\"Sebastian Pekarek\",e.organizer()?.name);assert.strictEqual(\"mail@example.com\",e.organizer()?.email);e.organizer({name:\"Sebastian Pekarek\",email:\"mail@example.com\",mailto:\"mail2@example2.com\"});assert.strictEqual(\"Sebastian Pekarek\",e.organizer()?.name);assert.strictEqual(\"mail@example.com\",e.organizer()?.email);assert.strictEqual(\"mail2@example2.com\",e.organizer()?.mailto)", "err": {}, - "uuid": "a3f6e37e-33dd-4f23-bcaa-575bee261802", - "parentUUID": "8e724dcf-14f1-4baf-9441-905ff5ee2a5e", + "uuid": "8e224a10-0e17-41a6-b78d-336c5ecd2915", + "parentUUID": "e41faa7d-2267-41c7-bd02-fa0d47ee9ac2", "isHook": false, "skipped": false }, @@ -6714,8 +6714,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.organizer(null));assert.deepStrictEqual(e,e.organizer(\"Sebastian Pekarek \"))", "err": {}, - "uuid": "3a1ded90-86e7-4029-a8d7-a510b802485c", - "parentUUID": "8e724dcf-14f1-4baf-9441-905ff5ee2a5e", + "uuid": "efdb06f5-997b-457b-86e5-6e4373c4fc4a", + "parentUUID": "e41faa7d-2267-41c7-bd02-fa0d47ee9ac2", "isHook": false, "skipped": false }, @@ -6723,7 +6723,7 @@ "title": "should work with objects", "fullTitle": "ical-generator Event organizer() should work with objects", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -6732,8 +6732,8 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);event.organizer({name:\"Sebastian Pekarek\",email:\"mail@example.com\"});assert.deepStrictEqual(event.organizer(),{name:\"Sebastian Pekarek\",email:\"mail@example.com\",mailto:void 0,sentBy:void 0});event.organizer({name:\"Sebastian Pekarek\",email:\"mail@example.com\",mailto:\"mail2@example2.com\"});assert.deepStrictEqual(event.organizer(),{name:\"Sebastian Pekarek\",email:\"mail@example.com\",mailto:\"mail2@example2.com\",sentBy:void 0})", "err": {}, - "uuid": "db6be21f-12b1-41de-a4f8-59be3fd13762", - "parentUUID": "8e724dcf-14f1-4baf-9441-905ff5ee2a5e", + "uuid": "05dfe5e3-0d88-4680-9b9f-dc0634c5adfb", + "parentUUID": "e41faa7d-2267-41c7-bd02-fa0d47ee9ac2", "isHook": false, "skipped": false }, @@ -6750,8 +6750,8 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);event.organizer({name:\"Sebastian Pekarek\",email:\"mail@example.com\",sentBy:\"bot@example.com\"});assert.deepStrictEqual(event.organizer(),{name:\"Sebastian Pekarek\",email:\"mail@example.com\",mailto:void 0,sentBy:\"bot@example.com\"})", "err": {}, - "uuid": "8aed9001-7c32-4613-aab8-89795c49f120", - "parentUUID": "8e724dcf-14f1-4baf-9441-905ff5ee2a5e", + "uuid": "4192e361-cd5a-493c-b970-0668ddb881ef", + "parentUUID": "e41faa7d-2267-41c7-bd02-fa0d47ee9ac2", "isHook": false, "skipped": false }, @@ -6768,8 +6768,8 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);event.organizer(\"Sebastian Pekarek \");assert.deepStrictEqual(event.organizer(),{name:\"Sebastian Pekarek\",email:\"mail@example.com\"})", "err": {}, - "uuid": "ed1ce1a0-fdca-4f76-81ab-6e878c9261d2", - "parentUUID": "8e724dcf-14f1-4baf-9441-905ff5ee2a5e", + "uuid": "0de1ee10-806e-41fa-bc0f-8c298498f8de", + "parentUUID": "e41faa7d-2267-41c7-bd02-fa0d47ee9ac2", "isHook": false, "skipped": false }, @@ -6786,8 +6786,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){e.organizer(\"foo bar\")},/`organizer`/)", "err": {}, - "uuid": "afdebb7b-4b46-4618-b920-838a5f634ba3", - "parentUUID": "8e724dcf-14f1-4baf-9441-905ff5ee2a5e", + "uuid": "99930467-dbde-4641-ab5f-85cab6880b06", + "parentUUID": "e41faa7d-2267-41c7-bd02-fa0d47ee9ac2", "isHook": false, "skipped": false }, @@ -6804,8 +6804,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){e.organizer({email:\"foo\"})},/`organizer\\.name`/)", "err": {}, - "uuid": "87b47f23-c841-4b88-82f2-c3834824ce3a", - "parentUUID": "8e724dcf-14f1-4baf-9441-905ff5ee2a5e", + "uuid": "1b9060c2-eb20-473e-8e9b-68e806e02e77", + "parentUUID": "e41faa7d-2267-41c7-bd02-fa0d47ee9ac2", "isHook": false, "skipped": false }, @@ -6822,8 +6822,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){e.organizer(Infinity)},/`organizer`/);assert.throws(function(){e.organizer(NaN)},/`organizer`/)", "err": {}, - "uuid": "c0a06e68-1282-40e4-87e5-afcc9e88f432", - "parentUUID": "8e724dcf-14f1-4baf-9441-905ff5ee2a5e", + "uuid": "c61737a4-4f5b-45f7-9b19-54dea9d85117", + "parentUUID": "e41faa7d-2267-41c7-bd02-fa0d47ee9ac2", "isHook": false, "skipped": false }, @@ -6840,8 +6840,8 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);event.organizer({name:\"Sebastian Pekarek\"});assert.deepStrictEqual(event.organizer(),{name:\"Sebastian Pekarek\",email:void 0,mailto:void 0,sentBy:void 0})", "err": {}, - "uuid": "c3bce690-d7ff-44e7-8e7a-da9d0c90fe66", - "parentUUID": "8e724dcf-14f1-4baf-9441-905ff5ee2a5e", + "uuid": "9064c689-214a-445c-b50e-4eea41bc3ed7", + "parentUUID": "e41faa7d-2267-41c7-bd02-fa0d47ee9ac2", "isHook": false, "skipped": false }, @@ -6858,35 +6858,35 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\",organizer:{name:\"Some Guy\"}},new ICalCalendar);assert.ok(event.toString().includes('ORGANIZER;CN=\"Some Guy\":'))", "err": {}, - "uuid": "e6493526-b40b-4094-b5df-c4390d7627ce", - "parentUUID": "8e724dcf-14f1-4baf-9441-905ff5ee2a5e", + "uuid": "09d7ab70-c215-4b31-b974-d10aa591b1b9", + "parentUUID": "e41faa7d-2267-41c7-bd02-fa0d47ee9ac2", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "a3f6e37e-33dd-4f23-bcaa-575bee261802", - "3a1ded90-86e7-4029-a8d7-a510b802485c", - "db6be21f-12b1-41de-a4f8-59be3fd13762", - "8aed9001-7c32-4613-aab8-89795c49f120", - "ed1ce1a0-fdca-4f76-81ab-6e878c9261d2", - "afdebb7b-4b46-4618-b920-838a5f634ba3", - "87b47f23-c841-4b88-82f2-c3834824ce3a", - "c0a06e68-1282-40e4-87e5-afcc9e88f432", - "c3bce690-d7ff-44e7-8e7a-da9d0c90fe66", - "e6493526-b40b-4094-b5df-c4390d7627ce" + "8e224a10-0e17-41a6-b78d-336c5ecd2915", + "efdb06f5-997b-457b-86e5-6e4373c4fc4a", + "05dfe5e3-0d88-4680-9b9f-dc0634c5adfb", + "4192e361-cd5a-493c-b970-0668ddb881ef", + "0de1ee10-806e-41fa-bc0f-8c298498f8de", + "99930467-dbde-4641-ab5f-85cab6880b06", + "1b9060c2-eb20-473e-8e9b-68e806e02e77", + "c61737a4-4f5b-45f7-9b19-54dea9d85117", + "9064c689-214a-445c-b50e-4eea41bc3ed7", + "09d7ab70-c215-4b31-b974-d10aa591b1b9" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "af9da7e5-4440-4932-9b41-fb5f8f5dcf07", + "uuid": "7ba94d78-7847-4242-a287-14bd0beac868", "title": "createAttendee()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -6906,8 +6906,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const attendee=new ICalAttendee({email:\"mail@example.com\"},event);assert.strictEqual(event.createAttendee(attendee),attendee,\"createAttendee returns attendee\");assert.deepStrictEqual(event.attendees()[0],attendee,\"attendee pushed\")", "err": {}, - "uuid": "a5ef477d-6acf-452e-a2b9-362556d6c7ad", - "parentUUID": "af9da7e5-4440-4932-9b41-fb5f8f5dcf07", + "uuid": "f2c8001a-80ae-442b-8b74-764546a6bf60", + "parentUUID": "7ba94d78-7847-4242-a287-14bd0beac868", "isHook": false, "skipped": false }, @@ -6924,8 +6924,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.ok(event.createAttendee({email:\"mail@example.com\"})instanceof ICalAttendee);assert.strictEqual(event.attendees.length,1,\"attendee pushed\")", "err": {}, - "uuid": "b7f7665a-6311-4df3-af74-b3156d01cce0", - "parentUUID": "af9da7e5-4440-4932-9b41-fb5f8f5dcf07", + "uuid": "513a77f2-2795-4e3e-81ef-0329941153db", + "parentUUID": "7ba94d78-7847-4242-a287-14bd0beac868", "isHook": false, "skipped": false }, @@ -6942,8 +6942,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const attendee=event.createAttendee(\"Zac \");assert.strictEqual(attendee.name(),\"Zac\");assert.strictEqual(attendee.email(),\"zac@example.com\");assert.strictEqual(event.attendees().length,1,\"attendee pushed\")", "err": {}, - "uuid": "18958710-f1a0-4186-abf0-107b4741860e", - "parentUUID": "af9da7e5-4440-4932-9b41-fb5f8f5dcf07", + "uuid": "e2d4aaa2-958e-4ea7-8968-a0d73167b4c3", + "parentUUID": "7ba94d78-7847-4242-a287-14bd0beac868", "isHook": false, "skipped": false }, @@ -6960,8 +6960,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){e.createAttendee(\"foo bar\")},/isn't formated correctly/)", "err": {}, - "uuid": "a7e9a5ff-3fde-4edb-9fbf-83f8d0be9d38", - "parentUUID": "af9da7e5-4440-4932-9b41-fb5f8f5dcf07", + "uuid": "bee6db97-4ffd-41d8-a194-4dd90d417569", + "parentUUID": "7ba94d78-7847-4242-a287-14bd0beac868", "isHook": false, "skipped": false }, @@ -6969,7 +6969,7 @@ "title": "should accept object", "fullTitle": "ical-generator Event createAttendee() should accept object", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -6978,30 +6978,30 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const attendee=event.createAttendee({name:\"Zac\",email:\"zac@example.com\"});assert.strictEqual(attendee.name(),\"Zac\");assert.strictEqual(attendee.email(),\"zac@example.com\");assert.strictEqual(event.attendees().length,1,\"attendee pushed\")", "err": {}, - "uuid": "b91b11f1-14dd-4d7c-aa2e-2dc0ee6b7f5f", - "parentUUID": "af9da7e5-4440-4932-9b41-fb5f8f5dcf07", + "uuid": "99895412-b60d-488f-9bd3-be2ad8ee4d50", + "parentUUID": "7ba94d78-7847-4242-a287-14bd0beac868", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "a5ef477d-6acf-452e-a2b9-362556d6c7ad", - "b7f7665a-6311-4df3-af74-b3156d01cce0", - "18958710-f1a0-4186-abf0-107b4741860e", - "a7e9a5ff-3fde-4edb-9fbf-83f8d0be9d38", - "b91b11f1-14dd-4d7c-aa2e-2dc0ee6b7f5f" + "f2c8001a-80ae-442b-8b74-764546a6bf60", + "513a77f2-2795-4e3e-81ef-0329941153db", + "e2d4aaa2-958e-4ea7-8968-a0d73167b4c3", + "bee6db97-4ffd-41d8-a194-4dd90d417569", + "99895412-b60d-488f-9bd3-be2ad8ee4d50" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "66fe65ca-933e-471c-acb7-75c649f0c770", + "uuid": "9a936fbb-0bef-4692-be4f-db62e27017ae", "title": "attendees()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7012,7 +7012,7 @@ "title": "getter should return an array of attendees…", "fullTitle": "ical-generator Event attendees() getter should return an array of attendees…", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -7021,8 +7021,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(event.attendees().length,0);const attendee=event.createAttendee({email:\"mail@example.com\"});assert.strictEqual(event.attendees().length,1);assert.deepStrictEqual(event.attendees()[0],attendee)", "err": {}, - "uuid": "f1b668d5-71db-46d9-b972-3835055499fd", - "parentUUID": "66fe65ca-933e-471c-acb7-75c649f0c770", + "uuid": "ffefb1f0-df96-40ba-a3c1-f0e217817980", + "parentUUID": "9a936fbb-0bef-4692-be4f-db62e27017ae", "isHook": false, "skipped": false }, @@ -7039,27 +7039,27 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const foo=event.attendees([{name:\"Person A\",email:\"a@example.com\"},{name:\"Person B\",email:\"b@example.com\"}]);assert.strictEqual(event.attendees().length,2);assert.deepStrictEqual(foo,event)", "err": {}, - "uuid": "b2c2cf79-bd4f-4432-b358-bd517f8c79ed", - "parentUUID": "66fe65ca-933e-471c-acb7-75c649f0c770", + "uuid": "9d702244-8ea4-40c4-9bd0-e1e8801aaaf8", + "parentUUID": "9a936fbb-0bef-4692-be4f-db62e27017ae", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "f1b668d5-71db-46d9-b972-3835055499fd", - "b2c2cf79-bd4f-4432-b358-bd517f8c79ed" + "ffefb1f0-df96-40ba-a3c1-f0e217817980", + "9d702244-8ea4-40c4-9bd0-e1e8801aaaf8" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "e0b2cf98-4b65-4d15-a3ff-ad7eea1a9eaa", + "uuid": "00ea34af-998a-4c51-b44b-0f4e7ae9859c", "title": "createAlarm()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7079,8 +7079,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.ok(event.createAlarm({type:ICalAlarmType.display,trigger:60*10})instanceof ICalAlarm)", "err": {}, - "uuid": "a1471993-35d0-4f21-baf4-c2a2683e6d19", - "parentUUID": "e0b2cf98-4b65-4d15-a3ff-ad7eea1a9eaa", + "uuid": "98d9f3bc-9423-4353-82f3-1718d3c7d520", + "parentUUID": "00ea34af-998a-4c51-b44b-0f4e7ae9859c", "isHook": false, "skipped": false }, @@ -7097,16 +7097,16 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const alarm=event.createAlarm({type:ICalAlarmType.audio,trigger:60*10});assert.strictEqual(alarm.type(),\"audio\")", "err": {}, - "uuid": "4bd595c6-647d-41d2-a7b8-7adc08d8c7cd", - "parentUUID": "e0b2cf98-4b65-4d15-a3ff-ad7eea1a9eaa", + "uuid": "78377603-7c14-42cd-b6a0-a626a0395c68", + "parentUUID": "00ea34af-998a-4c51-b44b-0f4e7ae9859c", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "a1471993-35d0-4f21-baf4-c2a2683e6d19", - "4bd595c6-647d-41d2-a7b8-7adc08d8c7cd" + "98d9f3bc-9423-4353-82f3-1718d3c7d520", + "78377603-7c14-42cd-b6a0-a626a0395c68" ], "failures": [], "pending": [], @@ -7117,7 +7117,7 @@ "_timeout": 2000 }, { - "uuid": "2a10f00e-40e5-4627-8a92-a866d8baeff8", + "uuid": "b310536b-4311-41a4-a5a6-e3abd5d9042a", "title": "alarms()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7137,8 +7137,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(event.alarms().length,0);const alarm=event.createAlarm({type:ICalAlarmType.display,trigger:600});assert.strictEqual(event.alarms().length,1);assert.deepStrictEqual(event.alarms()[0],alarm)", "err": {}, - "uuid": "be7228bf-c14f-470f-8481-2958df417b65", - "parentUUID": "2a10f00e-40e5-4627-8a92-a866d8baeff8", + "uuid": "70725019-703c-4d8f-8b4f-c8473ad3b474", + "parentUUID": "b310536b-4311-41a4-a5a6-e3abd5d9042a", "isHook": false, "skipped": false }, @@ -7155,16 +7155,16 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const foo=event.alarms([{type:ICalAlarmType.audio,trigger:60},{type:ICalAlarmType.display,trigger:600}]);assert.strictEqual(event.alarms().length,2);assert.deepStrictEqual(foo,event)", "err": {}, - "uuid": "a02ee455-7e62-414b-bd59-422a3d2b7c6c", - "parentUUID": "2a10f00e-40e5-4627-8a92-a866d8baeff8", + "uuid": "2b8b38be-4e97-4e9d-98df-fadc38ab0f4f", + "parentUUID": "b310536b-4311-41a4-a5a6-e3abd5d9042a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "be7228bf-c14f-470f-8481-2958df417b65", - "a02ee455-7e62-414b-bd59-422a3d2b7c6c" + "70725019-703c-4d8f-8b4f-c8473ad3b474", + "2b8b38be-4e97-4e9d-98df-fadc38ab0f4f" ], "failures": [], "pending": [], @@ -7175,7 +7175,7 @@ "_timeout": 2000 }, { - "uuid": "446944c6-3dfb-4a98-adf1-93e88b00d29d", + "uuid": "6c8ce089-14f0-4cc3-b799-366fc86fbf9a", "title": "createCategory()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7195,8 +7195,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.ok(event.createCategory({name:\"Test\"})instanceof ICalCategory)", "err": {}, - "uuid": "44377cef-1acd-4333-8320-8a21d5ba386f", - "parentUUID": "446944c6-3dfb-4a98-adf1-93e88b00d29d", + "uuid": "f8365822-9abd-4d20-99e8-7a7b863f2c0e", + "parentUUID": "6c8ce089-14f0-4cc3-b799-366fc86fbf9a", "isHook": false, "skipped": false }, @@ -7204,7 +7204,7 @@ "title": "should pass data to instance", "fullTitle": "ical-generator Event createCategory() should pass data to instance", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -7213,27 +7213,27 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const category=event.createCategory({name:\"foo\"});assert.strictEqual(category.name(),\"foo\")", "err": {}, - "uuid": "831da10d-9e91-4246-8bdf-92faccb9d387", - "parentUUID": "446944c6-3dfb-4a98-adf1-93e88b00d29d", + "uuid": "7eea125b-19de-4f70-9734-60d9d21f9827", + "parentUUID": "6c8ce089-14f0-4cc3-b799-366fc86fbf9a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "44377cef-1acd-4333-8320-8a21d5ba386f", - "831da10d-9e91-4246-8bdf-92faccb9d387" + "f8365822-9abd-4d20-99e8-7a7b863f2c0e", + "7eea125b-19de-4f70-9734-60d9d21f9827" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "53455203-e45c-44cb-be1b-30d814b7f23f", + "uuid": "756280b9-0e24-402c-93fc-42de1e0b730e", "title": "categories()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7253,8 +7253,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(event.categories().length,0);const category=event.createCategory({name:\"Test\"});assert.strictEqual(event.categories().length,1);assert.deepStrictEqual(event.categories()[0],category)", "err": {}, - "uuid": "fed3da0f-7290-46ac-ac37-5a3664107832", - "parentUUID": "53455203-e45c-44cb-be1b-30d814b7f23f", + "uuid": "58bad66d-9a2b-4f3b-afc9-26677694c312", + "parentUUID": "756280b9-0e24-402c-93fc-42de1e0b730e", "isHook": false, "skipped": false }, @@ -7271,16 +7271,16 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const foo=event.categories([{name:\"foo\"},{name:\"bar\"}]);assert.strictEqual(event.categories().length,2);assert.deepStrictEqual(foo,event)", "err": {}, - "uuid": "07712a6c-a2c4-40a6-9c1a-fd73c4c3ba30", - "parentUUID": "53455203-e45c-44cb-be1b-30d814b7f23f", + "uuid": "c35e9f89-9479-4bbd-bb81-5e813111bf15", + "parentUUID": "756280b9-0e24-402c-93fc-42de1e0b730e", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "fed3da0f-7290-46ac-ac37-5a3664107832", - "07712a6c-a2c4-40a6-9c1a-fd73c4c3ba30" + "58bad66d-9a2b-4f3b-afc9-26677694c312", + "c35e9f89-9479-4bbd-bb81-5e813111bf15" ], "failures": [], "pending": [], @@ -7291,7 +7291,7 @@ "_timeout": 2000 }, { - "uuid": "29eb15c3-a995-4715-abca-80563841ed43", + "uuid": "7f32f4ec-45ae-48eb-b43a-004f483097c1", "title": "status()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7311,8 +7311,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(event.status(),null);event.status(ICalEventStatus.CONFIRMED);assert.strictEqual(event.status(),\"CONFIRMED\");event.status(null);assert.strictEqual(event.status(),null)", "err": {}, - "uuid": "37bf2c64-b417-4cce-85b8-e2d85d28dbb4", - "parentUUID": "29eb15c3-a995-4715-abca-80563841ed43", + "uuid": "a97d7a93-e597-445d-a916-37775016d55f", + "parentUUID": "7f32f4ec-45ae-48eb-b43a-004f483097c1", "isHook": false, "skipped": false }, @@ -7329,8 +7329,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.status(null));assert.deepStrictEqual(e,e.status(ICalEventStatus.CONFIRMED))", "err": {}, - "uuid": "c8aae17f-3212-4839-afb2-08aeeaad33a2", - "parentUUID": "29eb15c3-a995-4715-abca-80563841ed43", + "uuid": "47b329c6-2f7e-423a-b65f-259f0fda1815", + "parentUUID": "7f32f4ec-45ae-48eb-b43a-004f483097c1", "isHook": false, "skipped": false }, @@ -7347,8 +7347,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.status(ICalEventStatus.CONFIRMED);e.status(null);assert.strictEqual(e.status(),null)", "err": {}, - "uuid": "e7e1fe28-8dcb-42d7-aef6-5034224cb679", - "parentUUID": "29eb15c3-a995-4715-abca-80563841ed43", + "uuid": "224f8450-3ffb-4383-b5fd-6a818280fa58", + "parentUUID": "7f32f4ec-45ae-48eb-b43a-004f483097c1", "isHook": false, "skipped": false }, @@ -7365,8 +7365,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.status(ICalEventStatus.CONFIRMED);assert.strictEqual(e.status(),\"CONFIRMED\");assert.strictEqual(e.status(),ICalEventStatus.CONFIRMED)", "err": {}, - "uuid": "341764bc-478a-4caf-8f39-47a5c57c3860", - "parentUUID": "29eb15c3-a995-4715-abca-80563841ed43", + "uuid": "030a788f-62ad-4cc7-990b-2833d02c479f", + "parentUUID": "7f32f4ec-45ae-48eb-b43a-004f483097c1", "isHook": false, "skipped": false }, @@ -7383,19 +7383,19 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){e.status(\"COOKING\")},/Input must be one of the following: CONFIRMED, TENTATIVE, CANCELLED/);assert.throws(function(){e.status(Infinity)},/Input must be one of the following: CONFIRMED, TENTATIVE, CANCELLED/);assert.throws(function(){e.status(NaN)},/Input must be one of the following: CONFIRMED, TENTATIVE, CANCELLED/);assert.throws(function(){e.status(-1)},/Input must be one of the following: CONFIRMED, TENTATIVE, CANCELLED/)", "err": {}, - "uuid": "c0b6c221-3751-4dca-98c2-e33fb77a47a2", - "parentUUID": "29eb15c3-a995-4715-abca-80563841ed43", + "uuid": "a703ccf4-8314-4bec-a3e0-c43c3a7b5e59", + "parentUUID": "7f32f4ec-45ae-48eb-b43a-004f483097c1", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "37bf2c64-b417-4cce-85b8-e2d85d28dbb4", - "c8aae17f-3212-4839-afb2-08aeeaad33a2", - "e7e1fe28-8dcb-42d7-aef6-5034224cb679", - "341764bc-478a-4caf-8f39-47a5c57c3860", - "c0b6c221-3751-4dca-98c2-e33fb77a47a2" + "a97d7a93-e597-445d-a916-37775016d55f", + "47b329c6-2f7e-423a-b65f-259f0fda1815", + "224f8450-3ffb-4383-b5fd-6a818280fa58", + "030a788f-62ad-4cc7-990b-2833d02c479f", + "a703ccf4-8314-4bec-a3e0-c43c3a7b5e59" ], "failures": [], "pending": [], @@ -7406,7 +7406,7 @@ "_timeout": 2000 }, { - "uuid": "50716e15-5037-4010-b69b-fdfff560419a", + "uuid": "0244c437-1a6e-4828-801c-2c41ecaf4790", "title": "busystatus()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7426,8 +7426,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(event.busystatus(),null);event.busystatus(ICalEventBusyStatus.BUSY);assert.strictEqual(event.busystatus(),\"BUSY\");event.busystatus(null);assert.strictEqual(event.busystatus(),null)", "err": {}, - "uuid": "615d7451-24d2-474e-a013-01bff36ae1e4", - "parentUUID": "50716e15-5037-4010-b69b-fdfff560419a", + "uuid": "1619835b-6d80-42e0-a4a2-1b68ab9fc4b8", + "parentUUID": "0244c437-1a6e-4828-801c-2c41ecaf4790", "isHook": false, "skipped": false }, @@ -7444,8 +7444,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.busystatus(null));assert.deepStrictEqual(e,e.busystatus(ICalEventBusyStatus.BUSY))", "err": {}, - "uuid": "6896c1d7-5334-45e3-9ac3-cc66b7da864b", - "parentUUID": "50716e15-5037-4010-b69b-fdfff560419a", + "uuid": "8bffe81f-1e6d-4fde-b108-f5c49eb898c2", + "parentUUID": "0244c437-1a6e-4828-801c-2c41ecaf4790", "isHook": false, "skipped": false }, @@ -7462,8 +7462,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.busystatus(ICalEventBusyStatus.BUSY);e.busystatus(null);assert.strictEqual(e.busystatus(),null)", "err": {}, - "uuid": "efc00c27-a0ea-4bc1-989b-9d908114bfe5", - "parentUUID": "50716e15-5037-4010-b69b-fdfff560419a", + "uuid": "b94e7210-047f-4ce0-9f3d-a6e3e3ecb882", + "parentUUID": "0244c437-1a6e-4828-801c-2c41ecaf4790", "isHook": false, "skipped": false }, @@ -7480,8 +7480,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.busystatus(ICalEventBusyStatus.BUSY);assert.strictEqual(e.busystatus(),\"BUSY\")", "err": {}, - "uuid": "2d9e3ca6-844e-4e39-989f-0f28a30cc4e1", - "parentUUID": "50716e15-5037-4010-b69b-fdfff560419a", + "uuid": "28d3a55d-4c6f-4554-818f-314b4ef8795b", + "parentUUID": "0244c437-1a6e-4828-801c-2c41ecaf4790", "isHook": false, "skipped": false }, @@ -7498,19 +7498,19 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){e.busystatus(\"COOKING\")},/FREE, TENTATIVE, BUSY, OOF/);assert.throws(function(){e.busystatus(Infinity)},/FREE, TENTATIVE, BUSY, OOF/);assert.throws(function(){e.busystatus(NaN)},/FREE, TENTATIVE, BUSY, OOF/);assert.throws(function(){e.busystatus(-1)},/FREE, TENTATIVE, BUSY, OOF/)", "err": {}, - "uuid": "8b0d11e6-7a77-4361-80b9-e786d71207b0", - "parentUUID": "50716e15-5037-4010-b69b-fdfff560419a", + "uuid": "11afda21-6a21-4eba-b64f-3c13353acba1", + "parentUUID": "0244c437-1a6e-4828-801c-2c41ecaf4790", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "615d7451-24d2-474e-a013-01bff36ae1e4", - "6896c1d7-5334-45e3-9ac3-cc66b7da864b", - "efc00c27-a0ea-4bc1-989b-9d908114bfe5", - "2d9e3ca6-844e-4e39-989f-0f28a30cc4e1", - "8b0d11e6-7a77-4361-80b9-e786d71207b0" + "1619835b-6d80-42e0-a4a2-1b68ab9fc4b8", + "8bffe81f-1e6d-4fde-b108-f5c49eb898c2", + "b94e7210-047f-4ce0-9f3d-a6e3e3ecb882", + "28d3a55d-4c6f-4554-818f-314b4ef8795b", + "11afda21-6a21-4eba-b64f-3c13353acba1" ], "failures": [], "pending": [], @@ -7521,7 +7521,7 @@ "_timeout": 2000 }, { - "uuid": "744601df-0c43-4672-9a0b-77c004c4cc5f", + "uuid": "6a698f22-9bd1-4d18-b830-221a9ef5291d", "title": "priority()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7541,8 +7541,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(e.priority(),null);e.priority(5);assert.strictEqual(e.priority(),5)", "err": {}, - "uuid": "3f227594-299b-4c96-97ea-15f1b00e5d6d", - "parentUUID": "744601df-0c43-4672-9a0b-77c004c4cc5f", + "uuid": "c611dd57-1f59-492e-b95f-81f82ccbb8ac", + "parentUUID": "6a698f22-9bd1-4d18-b830-221a9ef5291d", "isHook": false, "skipped": false }, @@ -7559,8 +7559,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.priority(null));assert.deepStrictEqual(e,e.priority(5))", "err": {}, - "uuid": "dacb446b-35f6-4720-9139-c3433d4aeae7", - "parentUUID": "744601df-0c43-4672-9a0b-77c004c4cc5f", + "uuid": "c62441a6-f831-42f7-b769-3f11f7dabe5c", + "parentUUID": "6a698f22-9bd1-4d18-b830-221a9ef5291d", "isHook": false, "skipped": false }, @@ -7577,17 +7577,17 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);event.priority(5);assert.strictEqual(event.priority(),5);assert.ok(event.toString().includes(\"PRIORITY:5\"))", "err": {}, - "uuid": "fe92d80c-d21b-4374-9c1c-c1e624e4a469", - "parentUUID": "744601df-0c43-4672-9a0b-77c004c4cc5f", + "uuid": "8d4626f9-4932-4651-80f4-94356ee5ea1f", + "parentUUID": "6a698f22-9bd1-4d18-b830-221a9ef5291d", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "3f227594-299b-4c96-97ea-15f1b00e5d6d", - "dacb446b-35f6-4720-9139-c3433d4aeae7", - "fe92d80c-d21b-4374-9c1c-c1e624e4a469" + "c611dd57-1f59-492e-b95f-81f82ccbb8ac", + "c62441a6-f831-42f7-b769-3f11f7dabe5c", + "8d4626f9-4932-4651-80f4-94356ee5ea1f" ], "failures": [], "pending": [], @@ -7598,7 +7598,7 @@ "_timeout": 2000 }, { - "uuid": "9d3523a8-c186-46bc-a1a7-77a775de8f6b", + "uuid": "3f6b360a-5f7d-48eb-a6b5-85e8e6d202bc", "title": "url()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7618,8 +7618,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(e.url(),null);e.url(\"http://sebbo.net/\");assert.strictEqual(e.url(),\"http://sebbo.net/\")", "err": {}, - "uuid": "8ebfefb7-97db-4f8a-bd10-b2311bcc5d11", - "parentUUID": "9d3523a8-c186-46bc-a1a7-77a775de8f6b", + "uuid": "7afb4098-d67a-4055-b3cb-593fb693ca1c", + "parentUUID": "3f6b360a-5f7d-48eb-a6b5-85e8e6d202bc", "isHook": false, "skipped": false }, @@ -7636,8 +7636,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.url(null));assert.deepStrictEqual(e,e.url(\"http://sebbo.net/\"))", "err": {}, - "uuid": "5bb4c58c-5d80-4cf7-8ccf-cf10f7944f29", - "parentUUID": "9d3523a8-c186-46bc-a1a7-77a775de8f6b", + "uuid": "12127a52-2ec7-4503-af62-8124d1b1fe4f", + "parentUUID": "3f6b360a-5f7d-48eb-a6b5-85e8e6d202bc", "isHook": false, "skipped": false }, @@ -7654,17 +7654,17 @@ "context": null, "code": "const event=new ICalEvent({start:moment(),summary:\"Example Event\"},new ICalCalendar);event.url(\"http://github.com/sebbo2002/ical-generator\");assert.strictEqual(event.url(),\"http://github.com/sebbo2002/ical-generator\")", "err": {}, - "uuid": "f441f5c0-378b-4991-992d-4b4423f99233", - "parentUUID": "9d3523a8-c186-46bc-a1a7-77a775de8f6b", + "uuid": "46c99da4-7c94-4715-85fe-6bd3b617b11a", + "parentUUID": "3f6b360a-5f7d-48eb-a6b5-85e8e6d202bc", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "8ebfefb7-97db-4f8a-bd10-b2311bcc5d11", - "5bb4c58c-5d80-4cf7-8ccf-cf10f7944f29", - "f441f5c0-378b-4991-992d-4b4423f99233" + "7afb4098-d67a-4055-b3cb-593fb693ca1c", + "12127a52-2ec7-4503-af62-8124d1b1fe4f", + "46c99da4-7c94-4715-85fe-6bd3b617b11a" ], "failures": [], "pending": [], @@ -7675,7 +7675,7 @@ "_timeout": 2000 }, { - "uuid": "69ba9b7e-f262-4756-b348-33388e1fd55f", + "uuid": "f5d885fc-8085-40d2-a916-7d17bec19f5f", "title": "createAttachment()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7695,15 +7695,15 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(event.createAttachment(\"https://files.sebbo.net/calendar/attachments/foo\"),event)", "err": {}, - "uuid": "c167ee45-698c-4302-8627-8e6934ad29f0", - "parentUUID": "69ba9b7e-f262-4756-b348-33388e1fd55f", + "uuid": "88e517d9-d5a3-469c-b1dc-b08b28c90d9a", + "parentUUID": "f5d885fc-8085-40d2-a916-7d17bec19f5f", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "c167ee45-698c-4302-8627-8e6934ad29f0" + "88e517d9-d5a3-469c-b1dc-b08b28c90d9a" ], "failures": [], "pending": [], @@ -7714,7 +7714,7 @@ "_timeout": 2000 }, { - "uuid": "08574612-dd75-4008-a843-583158c871f0", + "uuid": "d1f7471c-adc6-4553-beb8-b21403e00d1a", "title": "attachments()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7734,8 +7734,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(event.attachments().length,0);event.createAttachment(\"https://files.sebbo.net/calendar/attachments/foo\");assert.strictEqual(event.attachments().length,1);assert.deepStrictEqual(typeof event.attachments()[0],\"string\")", "err": {}, - "uuid": "9962e1c6-d437-4740-9471-4e67486ad91d", - "parentUUID": "08574612-dd75-4008-a843-583158c871f0", + "uuid": "05436498-485a-4f58-874e-bf758ac01b3d", + "parentUUID": "d1f7471c-adc6-4553-beb8-b21403e00d1a", "isHook": false, "skipped": false }, @@ -7752,16 +7752,16 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);const foo=event.attachments([\"https://files.sebbo.net/calendar/attachments/foo\",\"https://files.sebbo.net/calendar/attachments/bar\"]);assert.strictEqual(event.attachments().length,2);assert.deepStrictEqual(foo,event)", "err": {}, - "uuid": "7814fe5f-b44c-4c69-b212-715f1e1a55c8", - "parentUUID": "08574612-dd75-4008-a843-583158c871f0", + "uuid": "ce0147f9-653d-4510-b84a-984a4fb3de39", + "parentUUID": "d1f7471c-adc6-4553-beb8-b21403e00d1a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "9962e1c6-d437-4740-9471-4e67486ad91d", - "7814fe5f-b44c-4c69-b212-715f1e1a55c8" + "05436498-485a-4f58-874e-bf758ac01b3d", + "ce0147f9-653d-4510-b84a-984a4fb3de39" ], "failures": [], "pending": [], @@ -7772,7 +7772,7 @@ "_timeout": 2000 }, { - "uuid": "9ea20dca-0ae1-460a-987a-9010c239ecda", + "uuid": "39846d0a-f9df-4d09-a5a6-c3e079e6ebf9", "title": "created()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7783,7 +7783,7 @@ "title": "setter should return this", "fullTitle": "ical-generator Event created() setter should return this", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -7792,8 +7792,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.created(new Date))", "err": {}, - "uuid": "842aaa57-544e-4108-b8c6-dbab44702553", - "parentUUID": "9ea20dca-0ae1-460a-987a-9010c239ecda", + "uuid": "ddd97903-3810-4b48-bad2-9ee2e849471d", + "parentUUID": "39846d0a-f9df-4d09-a5a6-c3e079e6ebf9", "isHook": false, "skipped": false }, @@ -7810,8 +7810,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.created(moment());assert.ok(moment.isMoment(e.created()))", "err": {}, - "uuid": "0e3f6526-eecb-44bd-88b5-823ff0105a6e", - "parentUUID": "9ea20dca-0ae1-460a-987a-9010c239ecda", + "uuid": "83ffe59f-809c-4a14-9050-3f4da920cc04", + "parentUUID": "39846d0a-f9df-4d09-a5a6-c3e079e6ebf9", "isHook": false, "skipped": false }, @@ -7828,8 +7828,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.created(new Date);assert.ok(e.created()instanceof Date)", "err": {}, - "uuid": "64fb0e8b-00ea-463c-9f0e-a545cb13c35d", - "parentUUID": "9ea20dca-0ae1-460a-987a-9010c239ecda", + "uuid": "4eb92f8c-8315-4bd2-a4eb-bd001c36b183", + "parentUUID": "39846d0a-f9df-4d09-a5a6-c3e079e6ebf9", "isHook": false, "skipped": false }, @@ -7846,8 +7846,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.created(moment().toJSON());assert.strictEqual(typeof e.created(),\"string\")", "err": {}, - "uuid": "76ce0fc1-475c-44ef-8826-cd2732ca6609", - "parentUUID": "9ea20dca-0ae1-460a-987a-9010c239ecda", + "uuid": "a68b8e20-2669-4118-87c6-3f292a90608e", + "parentUUID": "39846d0a-f9df-4d09-a5a6-c3e079e6ebf9", "isHook": false, "skipped": false }, @@ -7864,8 +7864,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.created(new Date);assert.ok(e.created()instanceof Date)", "err": {}, - "uuid": "a44074be-548d-4a06-a88e-118960248ddf", - "parentUUID": "9ea20dca-0ae1-460a-987a-9010c239ecda", + "uuid": "aafb24fb-a92d-442f-80c9-cba9067c5c21", + "parentUUID": "39846d0a-f9df-4d09-a5a6-c3e079e6ebf9", "isHook": false, "skipped": false }, @@ -7882,8 +7882,8 @@ "context": null, "code": "const now=new Date;const e=new ICalEvent({start:new Date},new ICalCalendar).created(now);assert.deepStrictEqual(e.created()?.valueOf(),now.getTime())", "err": {}, - "uuid": "4c943452-7cde-420e-a72b-8c0bec3b3927", - "parentUUID": "9ea20dca-0ae1-460a-987a-9010c239ecda", + "uuid": "cce79bf8-4d79-414b-845b-4ffe66f8b576", + "parentUUID": "39846d0a-f9df-4d09-a5a6-c3e079e6ebf9", "isHook": false, "skipped": false }, @@ -7900,32 +7900,32 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){e.created(\"hallo\")},/`created`/)", "err": {}, - "uuid": "c503a8f0-ce1e-4ece-af9c-f09e7d72961f", - "parentUUID": "9ea20dca-0ae1-460a-987a-9010c239ecda", + "uuid": "2ef7b588-7a07-4a6c-af4a-3447631890fd", + "parentUUID": "39846d0a-f9df-4d09-a5a6-c3e079e6ebf9", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "842aaa57-544e-4108-b8c6-dbab44702553", - "0e3f6526-eecb-44bd-88b5-823ff0105a6e", - "64fb0e8b-00ea-463c-9f0e-a545cb13c35d", - "76ce0fc1-475c-44ef-8826-cd2732ca6609", - "a44074be-548d-4a06-a88e-118960248ddf", - "4c943452-7cde-420e-a72b-8c0bec3b3927", - "c503a8f0-ce1e-4ece-af9c-f09e7d72961f" + "ddd97903-3810-4b48-bad2-9ee2e849471d", + "83ffe59f-809c-4a14-9050-3f4da920cc04", + "4eb92f8c-8315-4bd2-a4eb-bd001c36b183", + "a68b8e20-2669-4118-87c6-3f292a90608e", + "aafb24fb-a92d-442f-80c9-cba9067c5c21", + "cce79bf8-4d79-414b-845b-4ffe66f8b576", + "2ef7b588-7a07-4a6c-af4a-3447631890fd" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "49f5d8f6-de0c-422e-88ad-5db2b3f23e1b", + "uuid": "4775e5c3-88a7-4a34-8363-96a464062437", "title": "lastModified()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -7945,8 +7945,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.lastModified(new Date))", "err": {}, - "uuid": "8e1cc9d5-d57e-407a-b58d-8b99ab0d3995", - "parentUUID": "49f5d8f6-de0c-422e-88ad-5db2b3f23e1b", + "uuid": "b5a90bf5-42ac-47d4-a515-28445e0b6f91", + "parentUUID": "4775e5c3-88a7-4a34-8363-96a464062437", "isHook": false, "skipped": false }, @@ -7963,8 +7963,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.lastModified(moment());assert.ok(moment.isMoment(e.lastModified()))", "err": {}, - "uuid": "b2c2f62a-f468-4e6c-a7e2-89166e7bc42a", - "parentUUID": "49f5d8f6-de0c-422e-88ad-5db2b3f23e1b", + "uuid": "1f3495ac-0357-4169-8197-96bd4e1a6642", + "parentUUID": "4775e5c3-88a7-4a34-8363-96a464062437", "isHook": false, "skipped": false }, @@ -7981,8 +7981,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.lastModified(new Date);assert.ok(e.lastModified()instanceof Date)", "err": {}, - "uuid": "fd6848d7-6e72-4f76-a26b-6d274cadaa9c", - "parentUUID": "49f5d8f6-de0c-422e-88ad-5db2b3f23e1b", + "uuid": "f512b352-3ac7-4f4e-96d1-6ea2bb14db87", + "parentUUID": "4775e5c3-88a7-4a34-8363-96a464062437", "isHook": false, "skipped": false }, @@ -7999,8 +7999,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);const date=moment().toJSON();e.lastModified(date);assert.strictEqual(e.lastModified(),date)", "err": {}, - "uuid": "5bf33e60-d074-4536-b343-01fc2760af48", - "parentUUID": "49f5d8f6-de0c-422e-88ad-5db2b3f23e1b", + "uuid": "61f63e6a-eba4-44e2-9793-bb202c451d57", + "parentUUID": "4775e5c3-88a7-4a34-8363-96a464062437", "isHook": false, "skipped": false }, @@ -8017,8 +8017,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.lastModified(new Date);assert.ok(e.lastModified()instanceof Date)", "err": {}, - "uuid": "dfc1889f-4eeb-429d-822c-b573fe415cf0", - "parentUUID": "49f5d8f6-de0c-422e-88ad-5db2b3f23e1b", + "uuid": "1c75e861-b4bd-4226-b633-2ee73a34fd39", + "parentUUID": "4775e5c3-88a7-4a34-8363-96a464062437", "isHook": false, "skipped": false }, @@ -8035,8 +8035,8 @@ "context": null, "code": "const now=new Date;const e=new ICalEvent({start:new Date},new ICalCalendar).lastModified(now);assert.deepStrictEqual(e.lastModified()?.valueOf(),now.getTime())", "err": {}, - "uuid": "97da02e1-7ce9-45fc-a2ba-42de1304094c", - "parentUUID": "49f5d8f6-de0c-422e-88ad-5db2b3f23e1b", + "uuid": "ecd228b5-bd5e-4ee6-a49d-d34be1ce4a1d", + "parentUUID": "4775e5c3-88a7-4a34-8363-96a464062437", "isHook": false, "skipped": false }, @@ -8053,21 +8053,21 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){e.lastModified(\"hallo\")},/`lastModified`/)", "err": {}, - "uuid": "1fd4e492-fc55-4976-97cf-9cc26db366f6", - "parentUUID": "49f5d8f6-de0c-422e-88ad-5db2b3f23e1b", + "uuid": "b60d33cf-8230-4169-aa36-e0d139311f53", + "parentUUID": "4775e5c3-88a7-4a34-8363-96a464062437", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "8e1cc9d5-d57e-407a-b58d-8b99ab0d3995", - "b2c2f62a-f468-4e6c-a7e2-89166e7bc42a", - "fd6848d7-6e72-4f76-a26b-6d274cadaa9c", - "5bf33e60-d074-4536-b343-01fc2760af48", - "dfc1889f-4eeb-429d-822c-b573fe415cf0", - "97da02e1-7ce9-45fc-a2ba-42de1304094c", - "1fd4e492-fc55-4976-97cf-9cc26db366f6" + "b5a90bf5-42ac-47d4-a515-28445e0b6f91", + "1f3495ac-0357-4169-8197-96bd4e1a6642", + "f512b352-3ac7-4f4e-96d1-6ea2bb14db87", + "61f63e6a-eba4-44e2-9793-bb202c451d57", + "1c75e861-b4bd-4226-b633-2ee73a34fd39", + "ecd228b5-bd5e-4ee6-a49d-d34be1ce4a1d", + "b60d33cf-8230-4169-aa36-e0d139311f53" ], "failures": [], "pending": [], @@ -8078,7 +8078,7 @@ "_timeout": 2000 }, { - "uuid": "ab27029f-9582-442c-b623-990e39f2a9ac", + "uuid": "3795a160-2717-431c-967d-c66c71825355", "title": "class()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -8098,8 +8098,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(event.class(),null);event.class(ICalEventClass.PRIVATE);assert.strictEqual(event.class(),\"PRIVATE\");event.class(null);assert.strictEqual(event.class(),null)", "err": {}, - "uuid": "74de98d6-bf8b-4506-a468-03ae7616f862", - "parentUUID": "ab27029f-9582-442c-b623-990e39f2a9ac", + "uuid": "435a170e-5f78-4b56-aae4-fc6eba6847d6", + "parentUUID": "3795a160-2717-431c-967d-c66c71825355", "isHook": false, "skipped": false }, @@ -8116,8 +8116,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.class(null));assert.deepStrictEqual(e,e.class(ICalEventClass.PRIVATE))", "err": {}, - "uuid": "360babd1-e69f-4409-9d79-d20d90f8d47a", - "parentUUID": "ab27029f-9582-442c-b623-990e39f2a9ac", + "uuid": "6f7c44b7-8bf3-4ac4-81ae-c56e771fcb5c", + "parentUUID": "3795a160-2717-431c-967d-c66c71825355", "isHook": false, "skipped": false }, @@ -8134,8 +8134,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.class(ICalEventClass.PRIVATE);e.class(null);assert.strictEqual(e.class(),null)", "err": {}, - "uuid": "a7ec0822-2c8d-4fe9-9eb2-bb6b246e9431", - "parentUUID": "ab27029f-9582-442c-b623-990e39f2a9ac", + "uuid": "2a2308fc-c717-47ed-a354-cce63c6cf481", + "parentUUID": "3795a160-2717-431c-967d-c66c71825355", "isHook": false, "skipped": false }, @@ -8152,8 +8152,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.class(ICalEventClass.PRIVATE);assert.strictEqual(e.class(),\"PRIVATE\");assert.strictEqual(e.class(),ICalEventClass.PRIVATE)", "err": {}, - "uuid": "7e9c8c09-577f-4ae8-8f8b-65097e3a38e3", - "parentUUID": "ab27029f-9582-442c-b623-990e39f2a9ac", + "uuid": "78ed02e9-e94c-4ca1-98cd-7c17db4eb668", + "parentUUID": "3795a160-2717-431c-967d-c66c71825355", "isHook": false, "skipped": false }, @@ -8161,7 +8161,7 @@ "title": "should throw error when method not allowed", "fullTitle": "ical-generator Event class() should throw error when method not allowed", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -8170,30 +8170,30 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){e.class(\"COOKING\")},/Input must be one of the following: PUBLIC, PRIVATE, CONFIDENTIAL/);assert.throws(function(){e.class(Infinity)},/Input must be one of the following: PUBLIC, PRIVATE, CONFIDENTIAL/);assert.throws(function(){e.class(NaN)},/Input must be one of the following: PUBLIC, PRIVATE, CONFIDENTIAL/);assert.throws(function(){e.class(-1)},/Input must be one of the following: PUBLIC, PRIVATE, CONFIDENTIAL/)", "err": {}, - "uuid": "0eed8b3a-aeb4-4c63-bd52-2d280316c0a1", - "parentUUID": "ab27029f-9582-442c-b623-990e39f2a9ac", + "uuid": "575b2335-b784-4aff-9839-8126b857504b", + "parentUUID": "3795a160-2717-431c-967d-c66c71825355", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "74de98d6-bf8b-4506-a468-03ae7616f862", - "360babd1-e69f-4409-9d79-d20d90f8d47a", - "a7ec0822-2c8d-4fe9-9eb2-bb6b246e9431", - "7e9c8c09-577f-4ae8-8f8b-65097e3a38e3", - "0eed8b3a-aeb4-4c63-bd52-2d280316c0a1" + "435a170e-5f78-4b56-aae4-fc6eba6847d6", + "6f7c44b7-8bf3-4ac4-81ae-c56e771fcb5c", + "2a2308fc-c717-47ed-a354-cce63c6cf481", + "78ed02e9-e94c-4ca1-98cd-7c17db4eb668", + "575b2335-b784-4aff-9839-8126b857504b" ], "failures": [], "pending": [], "skipped": [], - "duration": 2, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "8e050f51-8659-490b-acac-a9f592d1609c", + "uuid": "53ca03e1-4f61-4f55-8b14-dd8524531c0a", "title": "x()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -8213,15 +8213,15 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.x(\"X-FOO\",\"bar\"))", "err": {}, - "uuid": "cbca25ce-0f7f-41ec-b933-d8345b4ff0ab", - "parentUUID": "8e050f51-8659-490b-acac-a9f592d1609c", + "uuid": "c70ac38b-e754-4374-b478-cd1dc4dd48cf", + "parentUUID": "53ca03e1-4f61-4f55-8b14-dd8524531c0a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "cbca25ce-0f7f-41ec-b933-d8345b4ff0ab" + "c70ac38b-e754-4374-b478-cd1dc4dd48cf" ], "failures": [], "pending": [], @@ -8232,7 +8232,7 @@ "_timeout": 2000 }, { - "uuid": "fdfd472e-7941-4d01-95ec-b89175911f1f", + "uuid": "97258ad3-8510-4676-8d3a-97ae0d1b986a", "title": "toJSON()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -8252,8 +8252,8 @@ "context": null, "code": "const date=moment().add(1,\"month\");const event=new ICalEvent({start:new Date},new ICalCalendar).summary(\"foo\").start(date);assert.strictEqual(event.toJSON().summary,\"foo\",\"summary is okay\");assert.deepStrictEqual(event.toJSON().start,date.toJSON(),\"start is okay\");assert.strictEqual(typeof event.toJSON().start,\"string\",\"start is string\")", "err": {}, - "uuid": "65393cbe-10be-4656-b417-9d5bfab49290", - "parentUUID": "fdfd472e-7941-4d01-95ec-b89175911f1f", + "uuid": "c38420e4-280c-4861-bdb4-954da427222a", + "parentUUID": "97258ad3-8510-4676-8d3a-97ae0d1b986a", "isHook": false, "skipped": false }, @@ -8261,7 +8261,7 @@ "title": "should stringify RRule objects", "fullTitle": "ical-generator Event toJSON() should stringify RRule objects", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -8270,8 +8270,8 @@ "context": null, "code": "const date=new Date;const rule=new rrule.RRule({freq:rrule.RRule.WEEKLY,interval:5,byweekday:[rrule.RRule.MO,rrule.RRule.FR],dtstart:date,until:new Date(Date.UTC(2012,12,31))});const event=new ICalEvent({start:new Date},new ICalCalendar).summary(\"foo\").start(date).repeating(rule);const json=event.toJSON();const before=event.toString();assert.ok(typeof json.repeating===\"string\");const event2=new ICalEvent(event.toJSON(),new ICalCalendar);const after=event2.toString();assert.strictEqual(after,before)", "err": {}, - "uuid": "4517e2dd-2bdf-4ea7-a3b6-87bceaf4032e", - "parentUUID": "fdfd472e-7941-4d01-95ec-b89175911f1f", + "uuid": "aa5eae2c-3b6f-4c1b-9ae0-ddb47146a359", + "parentUUID": "97258ad3-8510-4676-8d3a-97ae0d1b986a", "isHook": false, "skipped": false }, @@ -8288,28 +8288,28 @@ "context": null, "code": "const a=new ICalEvent({start:new Date},new ICalCalendar);new ICalEvent(a.toJSON(),new ICalCalendar)", "err": {}, - "uuid": "78bb568d-1b01-41d4-af99-3d4308fc41c2", - "parentUUID": "fdfd472e-7941-4d01-95ec-b89175911f1f", + "uuid": "9818816f-e006-4a59-9e30-45447fe2fbf1", + "parentUUID": "97258ad3-8510-4676-8d3a-97ae0d1b986a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "65393cbe-10be-4656-b417-9d5bfab49290", - "4517e2dd-2bdf-4ea7-a3b6-87bceaf4032e", - "78bb568d-1b01-41d4-af99-3d4308fc41c2" + "c38420e4-280c-4861-bdb4-954da427222a", + "aa5eae2c-3b6f-4c1b-9ae0-ddb47146a359", + "9818816f-e006-4a59-9e30-45447fe2fbf1" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "47f0afbf-cd82-4aae-a26d-6b9ee57721e9", + "uuid": "f011178a-80c4-449c-84ec-8479c6a844db", "title": "transparency()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -8329,8 +8329,8 @@ "context": null, "code": "const event=new ICalEvent({start:new Date},new ICalCalendar);assert.strictEqual(event.transparency(),null);event.transparency(ICalEventTransparency.OPAQUE);assert.strictEqual(event.transparency(),\"OPAQUE\");event.transparency(null);assert.strictEqual(event.transparency(),null)", "err": {}, - "uuid": "01c0772b-5646-4157-a4d9-703dd2147c0d", - "parentUUID": "47f0afbf-cd82-4aae-a26d-6b9ee57721e9", + "uuid": "b4f1f610-2ff7-42a2-a930-13747bf08276", + "parentUUID": "f011178a-80c4-449c-84ec-8479c6a844db", "isHook": false, "skipped": false }, @@ -8347,8 +8347,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.deepStrictEqual(e,e.transparency(null));assert.deepStrictEqual(e,e.transparency(ICalEventTransparency.TRANSPARENT))", "err": {}, - "uuid": "cbf43c56-0b43-445a-bcf4-433f9b9a32bf", - "parentUUID": "47f0afbf-cd82-4aae-a26d-6b9ee57721e9", + "uuid": "54524ba9-a62e-4661-b069-79d6ff9e4bd8", + "parentUUID": "f011178a-80c4-449c-84ec-8479c6a844db", "isHook": false, "skipped": false }, @@ -8365,8 +8365,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.transparency(ICalEventTransparency.OPAQUE);e.transparency(null);assert.strictEqual(e.transparency(),null)", "err": {}, - "uuid": "07865cb2-7b86-4bb9-8be9-e0f432fee961", - "parentUUID": "47f0afbf-cd82-4aae-a26d-6b9ee57721e9", + "uuid": "b60631ab-140f-4321-8619-7797eb9a6ab8", + "parentUUID": "f011178a-80c4-449c-84ec-8479c6a844db", "isHook": false, "skipped": false }, @@ -8383,8 +8383,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);e.transparency(ICalEventTransparency.OPAQUE);assert.strictEqual(e.transparency(),\"OPAQUE\")", "err": {}, - "uuid": "b982c464-441e-4378-ad0c-34d812a52ecd", - "parentUUID": "47f0afbf-cd82-4aae-a26d-6b9ee57721e9", + "uuid": "a792836a-a0a7-44cf-b515-2ea6108018ed", + "parentUUID": "f011178a-80c4-449c-84ec-8479c6a844db", "isHook": false, "skipped": false }, @@ -8401,19 +8401,19 @@ "context": null, "code": "const e=new ICalEvent({start:new Date},new ICalCalendar);assert.throws(function(){e.transparency(\"COOKING\")},/TRANSPARENT, OPAQUE/);assert.throws(function(){e.transparency(Infinity)},/TRANSPARENT, OPAQUE/);assert.throws(function(){e.transparency(-1)},/TRANSPARENT, OPAQUE/)", "err": {}, - "uuid": "b152372d-13a2-4c80-9787-0be53f12f834", - "parentUUID": "47f0afbf-cd82-4aae-a26d-6b9ee57721e9", + "uuid": "69e95e14-2503-4d8f-a24b-5a67b16fd378", + "parentUUID": "f011178a-80c4-449c-84ec-8479c6a844db", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "01c0772b-5646-4157-a4d9-703dd2147c0d", - "cbf43c56-0b43-445a-bcf4-433f9b9a32bf", - "07865cb2-7b86-4bb9-8be9-e0f432fee961", - "b982c464-441e-4378-ad0c-34d812a52ecd", - "b152372d-13a2-4c80-9787-0be53f12f834" + "b4f1f610-2ff7-42a2-a930-13747bf08276", + "54524ba9-a62e-4661-b069-79d6ff9e4bd8", + "b60631ab-140f-4321-8619-7797eb9a6ab8", + "a792836a-a0a7-44cf-b515-2ea6108018ed", + "69e95e14-2503-4d8f-a24b-5a67b16fd378" ], "failures": [], "pending": [], @@ -8424,7 +8424,7 @@ "_timeout": 2000 }, { - "uuid": "b5174b87-6b78-4e05-a418-d9f4180f747d", + "uuid": "c2217ee0-ceea-4319-92ee-b94a42ac7eb0", "title": "toString()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/event.ts", "file": "/test/event.ts", @@ -8444,8 +8444,8 @@ "context": null, "code": "const e=new ICalEvent({start:new Date,end:new Date(new Date().getTime()+36e5),summary:\"Hel\\\\\\\\lo\\nW;orl,d\"},new ICalCalendar);assert.ok(e.toString().indexOf(\"Hel\\\\\\\\\\\\\\\\lo\\\\nW\\\\;orl\\\\,d\")>-1)", "err": {}, - "uuid": "d5b2ff39-f659-4438-aaae-0c48b67f1230", - "parentUUID": "b5174b87-6b78-4e05-a418-d9f4180f747d", + "uuid": "b8763051-a742-47d8-b3bc-25d41d8bd301", + "parentUUID": "c2217ee0-ceea-4319-92ee-b94a42ac7eb0", "isHook": false, "skipped": false }, @@ -8462,8 +8462,8 @@ "context": null, "code": "const cal=new ICalCalendar;const event=new ICalEvent({id:42,start:moment(),summary:\":)\"},cal);assert.ok(event.toString().indexOf(\"UID:42\\r\")>-1)", "err": {}, - "uuid": "94aa5760-c384-4751-9e28-ffe08ff9dece", - "parentUUID": "b5174b87-6b78-4e05-a418-d9f4180f747d", + "uuid": "059c8df8-a1c4-4944-bb49-f1a0b99cb256", + "parentUUID": "c2217ee0-ceea-4319-92ee-b94a42ac7eb0", "isHook": false, "skipped": false }, @@ -8480,8 +8480,8 @@ "context": null, "code": "const cal=new ICalCalendar;let event=new ICalEvent({start:moment(),end:moment(),repeating:{freq:ICalEventRepeatingFreq.WEEKLY}},cal);assert.ok(!event.toString().includes(\"WKST\"),\"without WKST\");event=new ICalEvent({start:moment(),end:moment(),repeating:{freq:ICalEventRepeatingFreq.WEEKLY,startOfWeek:ICalWeekday.SU}},cal);assert.ok(event.toString().includes(\"WKST\"),\"with WKST\")", "err": {}, - "uuid": "0dc3cf3e-534c-4361-951d-84ea6ad015a2", - "parentUUID": "b5174b87-6b78-4e05-a418-d9f4180f747d", + "uuid": "7793cdd6-d163-4ac0-9fd4-74714da17ddd", + "parentUUID": "c2217ee0-ceea-4319-92ee-b94a42ac7eb0", "isHook": false, "skipped": false }, @@ -8498,18 +8498,18 @@ "context": null, "code": "const cal=new ICalCalendar;const luxonStartDate=DateTime.fromISO(\"2024-03-17T00:00:00.000+01:00\",{setZone:true});const luxonEndDate=DateTime.fromISO(\"2024-03-18T00:00:00.000+01:00\",{setZone:true});const event=new ICalEvent({allDay:true,start:luxonStartDate,end:luxonEndDate},cal);const actual=event.toString();assert.match(actual,new RegExp(\"X-MICROSOFT-CDO-ALLDAYEVENT:TRUE\\r\\n\"),\"with Microsoft CDO alldayevent set\");assert.match(actual,new RegExp(\"X-MICROSOFT-MSNCALENDAR-ALLDAYEVENT:TRUE\\r\\n\"),\"with Microsoft MSNCalendar alldayevent flag set\");assert.match(actual,new RegExp(`DTSTART;VALUE=DATE:${luxonStartDate.toFormat(\"yyyyLLdd\")}\\r\n`),\"for DTSTART\");assert.match(actual,new RegExp(`DTEND;VALUE=DATE:${luxonEndDate.toFormat(\"yyyyLLdd\")}\\r\n`),\"for DTEND\")", "err": {}, - "uuid": "d85ea47a-31f0-4207-baa3-42c6311c21cf", - "parentUUID": "b5174b87-6b78-4e05-a418-d9f4180f747d", + "uuid": "b7c19865-a373-4fac-b295-349cfa6e651f", + "parentUUID": "c2217ee0-ceea-4319-92ee-b94a42ac7eb0", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "d5b2ff39-f659-4438-aaae-0c48b67f1230", - "94aa5760-c384-4751-9e28-ffe08ff9dece", - "0dc3cf3e-534c-4361-951d-84ea6ad015a2", - "d85ea47a-31f0-4207-baa3-42c6311c21cf" + "b8763051-a742-47d8-b3bc-25d41d8bd301", + "059c8df8-a1c4-4944-bb49-f1a0b99cb256", + "7793cdd6-d163-4ac0-9fd4-74714da17ddd", + "b7c19865-a373-4fac-b295-349cfa6e651f" ], "failures": [], "pending": [], @@ -8530,7 +8530,7 @@ "_timeout": 2000 }, { - "uuid": "9de40d44-25a1-4777-b9da-d40b0e998ce0", + "uuid": "c03ddcec-5f3c-47f3-8cc3-b78e515aef03", "title": "ical-generator Index", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/index.ts", "file": "/test/index.ts", @@ -8539,7 +8539,7 @@ "tests": [], "suites": [ { - "uuid": "a425370d-b54f-4846-ba58-c89b3d411e22", + "uuid": "6ee4ecdf-7410-4d18-9066-7939a4a56d2e", "title": "default", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/index.ts", "file": "/test/index.ts", @@ -8559,8 +8559,8 @@ "context": null, "code": "assert.strictEqual(typeof ical,\"function\")", "err": {}, - "uuid": "64ba8e3a-0234-434b-ae0d-9641fd2a26d9", - "parentUUID": "a425370d-b54f-4846-ba58-c89b3d411e22", + "uuid": "7204ba93-405f-442b-91b7-c5d4681404c9", + "parentUUID": "6ee4ecdf-7410-4d18-9066-7939a4a56d2e", "isHook": false, "skipped": false }, @@ -8577,16 +8577,16 @@ "context": null, "code": "assert.ok(ical()instanceof ICalCalendar)", "err": {}, - "uuid": "2838f362-d652-4f5a-97aa-d997018f13a1", - "parentUUID": "a425370d-b54f-4846-ba58-c89b3d411e22", + "uuid": "b1c12c07-794e-4602-8341-6edc8c1a1fba", + "parentUUID": "6ee4ecdf-7410-4d18-9066-7939a4a56d2e", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "64ba8e3a-0234-434b-ae0d-9641fd2a26d9", - "2838f362-d652-4f5a-97aa-d997018f13a1" + "7204ba93-405f-442b-91b7-c5d4681404c9", + "b1c12c07-794e-4602-8341-6edc8c1a1fba" ], "failures": [], "pending": [], @@ -8597,7 +8597,7 @@ "_timeout": 2000 }, { - "uuid": "de811e16-40f0-451f-a602-f8c53c3d44fa", + "uuid": "39cb5ad5-0a20-4363-a814-667c15809087", "title": "Alarm", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/index.ts", "file": "/test/index.ts", @@ -8617,8 +8617,8 @@ "context": null, "code": "assert.ok(ICalAlarm)", "err": {}, - "uuid": "a00f4dcc-1377-4ae4-87b8-a8c38a2eb5dd", - "parentUUID": "de811e16-40f0-451f-a602-f8c53c3d44fa", + "uuid": "f4bb9d07-115f-4992-a09e-839e270aff85", + "parentUUID": "39cb5ad5-0a20-4363-a814-667c15809087", "isHook": false, "skipped": false }, @@ -8635,16 +8635,16 @@ "context": null, "code": "assert.ok(ICalAlarmType)", "err": {}, - "uuid": "459eaf95-7a2a-42f7-8d8e-5ada9bd93628", - "parentUUID": "de811e16-40f0-451f-a602-f8c53c3d44fa", + "uuid": "f9faf719-4979-4721-86c7-2f2317b03260", + "parentUUID": "39cb5ad5-0a20-4363-a814-667c15809087", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "a00f4dcc-1377-4ae4-87b8-a8c38a2eb5dd", - "459eaf95-7a2a-42f7-8d8e-5ada9bd93628" + "f4bb9d07-115f-4992-a09e-839e270aff85", + "f9faf719-4979-4721-86c7-2f2317b03260" ], "failures": [], "pending": [], @@ -8655,7 +8655,7 @@ "_timeout": 2000 }, { - "uuid": "9d76edc5-8353-46c5-8ff4-2df3847fd1b9", + "uuid": "947102ca-4ac1-4358-ab67-b6b4294af967", "title": "Attendee", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/index.ts", "file": "/test/index.ts", @@ -8675,8 +8675,8 @@ "context": null, "code": "assert.ok(ICalAttendee)", "err": {}, - "uuid": "ba66dec8-90b4-4cd3-b4b8-bbadb3b7df2f", - "parentUUID": "9d76edc5-8353-46c5-8ff4-2df3847fd1b9", + "uuid": "cb22d76d-1e95-4116-9949-34f12d62baad", + "parentUUID": "947102ca-4ac1-4358-ab67-b6b4294af967", "isHook": false, "skipped": false }, @@ -8693,8 +8693,8 @@ "context": null, "code": "assert.ok(ICalAttendeeType)", "err": {}, - "uuid": "f0e803f3-498c-4b59-a93f-d5b7cbe0bf80", - "parentUUID": "9d76edc5-8353-46c5-8ff4-2df3847fd1b9", + "uuid": "ec7a8bb5-9171-49de-b894-a6f96ae646f1", + "parentUUID": "947102ca-4ac1-4358-ab67-b6b4294af967", "isHook": false, "skipped": false }, @@ -8711,8 +8711,8 @@ "context": null, "code": "assert.ok(ICalAttendeeRole)", "err": {}, - "uuid": "6c164fc8-abcf-4890-a797-246f36ec1ce6", - "parentUUID": "9d76edc5-8353-46c5-8ff4-2df3847fd1b9", + "uuid": "3fce43d8-ea64-45d8-be77-91192f143ef6", + "parentUUID": "947102ca-4ac1-4358-ab67-b6b4294af967", "isHook": false, "skipped": false }, @@ -8729,18 +8729,18 @@ "context": null, "code": "assert.ok(ICalAttendeeStatus)", "err": {}, - "uuid": "6a4c686f-aa02-488d-a3de-f71e10522973", - "parentUUID": "9d76edc5-8353-46c5-8ff4-2df3847fd1b9", + "uuid": "b81d9109-407f-483e-a08a-b5e1dfbc2c9d", + "parentUUID": "947102ca-4ac1-4358-ab67-b6b4294af967", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "ba66dec8-90b4-4cd3-b4b8-bbadb3b7df2f", - "f0e803f3-498c-4b59-a93f-d5b7cbe0bf80", - "6c164fc8-abcf-4890-a797-246f36ec1ce6", - "6a4c686f-aa02-488d-a3de-f71e10522973" + "cb22d76d-1e95-4116-9949-34f12d62baad", + "ec7a8bb5-9171-49de-b894-a6f96ae646f1", + "3fce43d8-ea64-45d8-be77-91192f143ef6", + "b81d9109-407f-483e-a08a-b5e1dfbc2c9d" ], "failures": [], "pending": [], @@ -8751,7 +8751,7 @@ "_timeout": 2000 }, { - "uuid": "4a163d27-c6f6-4192-9c65-8a73156635ed", + "uuid": "0e33127a-6473-4791-ad3d-910693e3a7e0", "title": "Calendar", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/index.ts", "file": "/test/index.ts", @@ -8771,8 +8771,8 @@ "context": null, "code": "assert.ok(ICalCalendar)", "err": {}, - "uuid": "a7e78550-968f-4f13-91df-448f93ceb5cc", - "parentUUID": "4a163d27-c6f6-4192-9c65-8a73156635ed", + "uuid": "bec33bc6-cc03-4afc-8d25-4fa014ff7d70", + "parentUUID": "0e33127a-6473-4791-ad3d-910693e3a7e0", "isHook": false, "skipped": false }, @@ -8789,16 +8789,16 @@ "context": null, "code": "assert.ok(ICalCalendarMethod)", "err": {}, - "uuid": "219b13d3-3a61-4b5e-89ee-ebd979ad9435", - "parentUUID": "4a163d27-c6f6-4192-9c65-8a73156635ed", + "uuid": "6cffc3cb-fcc0-4b8a-93fe-cf07937a87d9", + "parentUUID": "0e33127a-6473-4791-ad3d-910693e3a7e0", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "a7e78550-968f-4f13-91df-448f93ceb5cc", - "219b13d3-3a61-4b5e-89ee-ebd979ad9435" + "bec33bc6-cc03-4afc-8d25-4fa014ff7d70", + "6cffc3cb-fcc0-4b8a-93fe-cf07937a87d9" ], "failures": [], "pending": [], @@ -8809,7 +8809,7 @@ "_timeout": 2000 }, { - "uuid": "59faf9dd-f6df-4170-be62-f60930d3303d", + "uuid": "7339ac55-7fa8-498d-b038-b047d117f026", "title": "Category", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/index.ts", "file": "/test/index.ts", @@ -8829,15 +8829,15 @@ "context": null, "code": "assert.ok(ICalCategory)", "err": {}, - "uuid": "498e5623-053b-4b9c-8be8-28996fcf9119", - "parentUUID": "59faf9dd-f6df-4170-be62-f60930d3303d", + "uuid": "53c38554-bc82-4799-af00-2f57b527238c", + "parentUUID": "7339ac55-7fa8-498d-b038-b047d117f026", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "498e5623-053b-4b9c-8be8-28996fcf9119" + "53c38554-bc82-4799-af00-2f57b527238c" ], "failures": [], "pending": [], @@ -8848,7 +8848,7 @@ "_timeout": 2000 }, { - "uuid": "98359a19-b5d3-4f50-a09f-7f72c5dead8b", + "uuid": "32062a27-0df6-4e26-a772-8aa81f04d008", "title": "Event", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/index.ts", "file": "/test/index.ts", @@ -8859,7 +8859,7 @@ "title": "should export ICalEvent", "fullTitle": "ical-generator Index Event should export ICalEvent", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -8868,8 +8868,8 @@ "context": null, "code": "assert.ok(ICalEvent)", "err": {}, - "uuid": "04709954-1916-4731-9721-5a15b3bf8095", - "parentUUID": "98359a19-b5d3-4f50-a09f-7f72c5dead8b", + "uuid": "5af510e3-b485-4977-8cb5-82aa43137157", + "parentUUID": "32062a27-0df6-4e26-a772-8aa81f04d008", "isHook": false, "skipped": false }, @@ -8886,8 +8886,8 @@ "context": null, "code": "assert.ok(ICalEventStatus)", "err": {}, - "uuid": "df411436-ab67-4fca-8eae-a3951763a237", - "parentUUID": "98359a19-b5d3-4f50-a09f-7f72c5dead8b", + "uuid": "b758a102-05e8-4c5e-b28c-2f5a7caa8853", + "parentUUID": "32062a27-0df6-4e26-a772-8aa81f04d008", "isHook": false, "skipped": false }, @@ -8904,8 +8904,8 @@ "context": null, "code": "assert.ok(ICalEventBusyStatus)", "err": {}, - "uuid": "3ff1dea6-e697-4319-ae6d-75b2aa9f9220", - "parentUUID": "98359a19-b5d3-4f50-a09f-7f72c5dead8b", + "uuid": "ca913c08-e5c4-4228-b229-3ce3970dc6ec", + "parentUUID": "32062a27-0df6-4e26-a772-8aa81f04d008", "isHook": false, "skipped": false }, @@ -8922,29 +8922,29 @@ "context": null, "code": "assert.ok(ICalEventTransparency)", "err": {}, - "uuid": "259d21f0-a9e5-452c-8586-bf8357e2458e", - "parentUUID": "98359a19-b5d3-4f50-a09f-7f72c5dead8b", + "uuid": "e05ddb14-216b-42c3-b0b4-2a23507df051", + "parentUUID": "32062a27-0df6-4e26-a772-8aa81f04d008", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "04709954-1916-4731-9721-5a15b3bf8095", - "df411436-ab67-4fca-8eae-a3951763a237", - "3ff1dea6-e697-4319-ae6d-75b2aa9f9220", - "259d21f0-a9e5-452c-8586-bf8357e2458e" + "5af510e3-b485-4977-8cb5-82aa43137157", + "b758a102-05e8-4c5e-b28c-2f5a7caa8853", + "ca913c08-e5c4-4228-b229-3ce3970dc6ec", + "e05ddb14-216b-42c3-b0b4-2a23507df051" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "9e89dc10-544e-4d81-9fb4-4a72ee7e76f7", + "uuid": "73f23108-ad4e-41de-a796-f849ac76bd2d", "title": "Type", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/index.ts", "file": "/test/index.ts", @@ -8964,8 +8964,8 @@ "context": null, "code": "assert.ok(ICalEventRepeatingFreq)", "err": {}, - "uuid": "13e7c356-2efc-42fa-8645-10d5ea8c7545", - "parentUUID": "9e89dc10-544e-4d81-9fb4-4a72ee7e76f7", + "uuid": "026ff537-a489-4d72-b837-66810cb39a09", + "parentUUID": "73f23108-ad4e-41de-a796-f849ac76bd2d", "isHook": false, "skipped": false }, @@ -8982,16 +8982,16 @@ "context": null, "code": "assert.ok(ICalWeekday)", "err": {}, - "uuid": "5e660169-77e1-4c60-aeb4-ea4e47d0894f", - "parentUUID": "9e89dc10-544e-4d81-9fb4-4a72ee7e76f7", + "uuid": "c4638b16-cd1b-4590-a534-782485ba5ad8", + "parentUUID": "73f23108-ad4e-41de-a796-f849ac76bd2d", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "13e7c356-2efc-42fa-8645-10d5ea8c7545", - "5e660169-77e1-4c60-aeb4-ea4e47d0894f" + "026ff537-a489-4d72-b837-66810cb39a09", + "c4638b16-cd1b-4590-a534-782485ba5ad8" ], "failures": [], "pending": [], @@ -9002,7 +9002,7 @@ "_timeout": 2000 }, { - "uuid": "0832a1de-756a-48d0-8ace-0462b7d3c018", + "uuid": "21cf4841-f085-410d-8b4f-35c7d22cb327", "title": "Tools", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/index.ts", "file": "/test/index.ts", @@ -9022,8 +9022,8 @@ "context": null, "code": "assert.ok(typeof formatDate===\"function\")", "err": {}, - "uuid": "b58cba90-d92f-4b42-9384-4b2476eb815d", - "parentUUID": "0832a1de-756a-48d0-8ace-0462b7d3c018", + "uuid": "28370d4c-5898-4135-8e29-9f71192a2fac", + "parentUUID": "21cf4841-f085-410d-8b4f-35c7d22cb327", "isHook": false, "skipped": false }, @@ -9040,8 +9040,8 @@ "context": null, "code": "assert.ok(typeof formatDateTZ===\"function\")", "err": {}, - "uuid": "4b44bf41-aaaf-4e26-804b-ce71065c0250", - "parentUUID": "0832a1de-756a-48d0-8ace-0462b7d3c018", + "uuid": "613e00fb-ab0c-4171-8e37-a7d59ee4ec7c", + "parentUUID": "21cf4841-f085-410d-8b4f-35c7d22cb327", "isHook": false, "skipped": false }, @@ -9058,8 +9058,8 @@ "context": null, "code": "assert.ok(typeof escape===\"function\")", "err": {}, - "uuid": "c766a43a-c218-4d74-84a0-0beb005cab37", - "parentUUID": "0832a1de-756a-48d0-8ace-0462b7d3c018", + "uuid": "8c572e3a-e46a-4253-ab98-e81544e6e47f", + "parentUUID": "21cf4841-f085-410d-8b4f-35c7d22cb327", "isHook": false, "skipped": false }, @@ -9076,18 +9076,18 @@ "context": null, "code": "assert.ok(typeof foldLines===\"function\")", "err": {}, - "uuid": "62fdc920-4384-4155-be87-dbdbbff7a1b7", - "parentUUID": "0832a1de-756a-48d0-8ace-0462b7d3c018", + "uuid": "c48f619f-bc61-4fc7-a40a-737199dbd566", + "parentUUID": "21cf4841-f085-410d-8b4f-35c7d22cb327", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "b58cba90-d92f-4b42-9384-4b2476eb815d", - "4b44bf41-aaaf-4e26-804b-ce71065c0250", - "c766a43a-c218-4d74-84a0-0beb005cab37", - "62fdc920-4384-4155-be87-dbdbbff7a1b7" + "28370d4c-5898-4135-8e29-9f71192a2fac", + "613e00fb-ab0c-4171-8e37-a7d59ee4ec7c", + "8c572e3a-e46a-4253-ab98-e81544e6e47f", + "c48f619f-bc61-4fc7-a40a-737199dbd566" ], "failures": [], "pending": [], @@ -9108,7 +9108,7 @@ "_timeout": 2000 }, { - "uuid": "1bbcf541-3058-461a-ae42-59f32a27b0b6", + "uuid": "3e680915-4f8e-4887-9491-db58eb9782de", "title": "Issues", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/issues.ts", "file": "/test/issues.ts", @@ -9117,7 +9117,7 @@ "tests": [], "suites": [ { - "uuid": "b3853e0c-3d9d-4588-9ab7-e2e74481dd49", + "uuid": "9d0b12ff-1fda-4d5a-ae77-7eda189695a0", "title": "Issue #38", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/issues.ts", "file": "/test/issues.ts", @@ -9128,7 +9128,7 @@ "title": "should work with Europe/Berlin", "fullTitle": "Issues Issue #38 should work with Europe/Berlin", "timedOut": false, - "duration": 2, + "duration": 3, "state": "passed", "speed": "fast", "pass": true, @@ -9137,8 +9137,8 @@ "context": null, "code": "const calendar=ical({prodId:\"//superman-industries.com//ical-generator//EN\",timezone:\"Europe/Berlin\",events:[{start:moment(\"2016-04-30T22:00:00.000Z\"),summary:\"Example Event\",allDay:true}]});const str=calendar.toString();assert.ok(str.indexOf(\"DTSTART;VALUE=DATE:20160501\")>-1)", "err": {}, - "uuid": "0c045f35-56a6-48b2-ac98-bfaf4331af4f", - "parentUUID": "b3853e0c-3d9d-4588-9ab7-e2e74481dd49", + "uuid": "01c40020-d7e5-4e1e-bca9-cd0c14b0ac54", + "parentUUID": "9d0b12ff-1fda-4d5a-ae77-7eda189695a0", "isHook": false, "skipped": false }, @@ -9146,7 +9146,7 @@ "title": "should work with Brazil/East", "fullTitle": "Issues Issue #38 should work with Brazil/East", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -9155,27 +9155,27 @@ "context": null, "code": "const calendar=ical({prodId:\"//superman-industries.com//ical-generator//EN\",timezone:\"Brazil/East\",events:[{start:moment(\"2016-05-01T03:00:00.000Z\"),summary:\"Example Event\",allDay:true}]});const str=calendar.toString();assert.ok(str.indexOf(\"DTSTART;VALUE=DATE:20160501\")>-1)", "err": {}, - "uuid": "14707ef6-55b5-4118-9ca1-47a4639ba399", - "parentUUID": "b3853e0c-3d9d-4588-9ab7-e2e74481dd49", + "uuid": "a9907329-b8f3-47cc-8a26-4ca6be994b31", + "parentUUID": "9d0b12ff-1fda-4d5a-ae77-7eda189695a0", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "0c045f35-56a6-48b2-ac98-bfaf4331af4f", - "14707ef6-55b5-4118-9ca1-47a4639ba399" + "01c40020-d7e5-4e1e-bca9-cd0c14b0ac54", + "a9907329-b8f3-47cc-8a26-4ca6be994b31" ], "failures": [], "pending": [], "skipped": [], - "duration": 2, + "duration": 4, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "e2b3ae64-cf34-431d-856c-db22b1534a6f", + "uuid": "4cbf55a2-8e06-47f8-9d9e-c2775466659d", "title": "Issue #123", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/issues.ts", "file": "/test/issues.ts", @@ -9186,7 +9186,7 @@ "title": "should work with repeating bySetPos", "fullTitle": "Issues Issue #123 should work with repeating bySetPos", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -9195,8 +9195,8 @@ "context": null, "code": "const calendar=ical({prodId:\"//superman-industries.com//ical-generator//EN\",events:[{start:moment(\"2016-04-30T22:00:00.000Z\"),end:moment(\"2016-05-01T00:00:00.000Z\"),summary:\"Example Event\",allDay:true,repeating:{freq:ICalEventRepeatingFreq.MONTHLY,count:3,interval:1,byDay:[ICalWeekday.SU],bySetPos:3}}]});const str=calendar.toString();assert.ok(str.indexOf(\"RRULE:FREQ=MONTHLY;COUNT=3;INTERVAL=1;BYDAY=SU;BYSETPOS=3\")>-1)", "err": {}, - "uuid": "44bfc32d-e040-4efa-a064-ae146234bde0", - "parentUUID": "e2b3ae64-cf34-431d-856c-db22b1534a6f", + "uuid": "808b1b20-8f49-4d28-a5e2-3899adb591c6", + "parentUUID": "4cbf55a2-8e06-47f8-9d9e-c2775466659d", "isHook": false, "skipped": false }, @@ -9213,27 +9213,27 @@ "context": null, "code": "const calendar=ical({prodId:\"//superman-industries.com//ical-generator//EN\",events:[{start:moment(\"2016-04-30T22:00:00.000Z\"),end:moment(\"2016-05-01T00:00:00.000Z\"),summary:\"Example Event\",allDay:true,repeating:{freq:ICalEventRepeatingFreq.MONTHLY,count:3,interval:1,byDay:[ICalWeekday.MO,ICalWeekday.FR],bySetPos:3}}]});const str=calendar.toString();assert.ok(str.indexOf(\"RRULE:FREQ=MONTHLY;COUNT=3;INTERVAL=1;BYDAY=MO,FR;BYSETPOS=3\")>-1)", "err": {}, - "uuid": "74c764ba-6c60-4343-bc07-4bbde6b53068", - "parentUUID": "e2b3ae64-cf34-431d-856c-db22b1534a6f", + "uuid": "542c0be8-96b9-4055-bbac-73b6d7bf847e", + "parentUUID": "4cbf55a2-8e06-47f8-9d9e-c2775466659d", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "44bfc32d-e040-4efa-a064-ae146234bde0", - "74c764ba-6c60-4343-bc07-4bbde6b53068" + "808b1b20-8f49-4d28-a5e2-3899adb591c6", + "542c0be8-96b9-4055-bbac-73b6d7bf847e" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 2, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "b949a2b1-4472-4f4b-974d-edbc5b78a578", + "uuid": "e9cc2726-7b46-4e7e-9887-f439fddffbc9", "title": "Issue #154", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/issues.ts", "file": "/test/issues.ts", @@ -9253,8 +9253,8 @@ "context": null, "code": "const calendar=ical({timezone:\"America/Buenos_Aires\",events:[{start:moment(1553219772e3),end:moment(1553219772e3),recurrenceId:moment(1553219772e3),timezone:\"America/La_Paz\"}]});const str=calendar.toString();assert.ok(str.indexOf(`${prop};TZID=America/La_Paz:20190321T215612`)>-1,str)", "err": {}, - "uuid": "8917bb04-d306-42ce-9427-314deef0859e", - "parentUUID": "b949a2b1-4472-4f4b-974d-edbc5b78a578", + "uuid": "0cd72ec3-b0e4-49d4-a6f2-fc996c52ff20", + "parentUUID": "e9cc2726-7b46-4e7e-9887-f439fddffbc9", "isHook": false, "skipped": false }, @@ -9262,7 +9262,7 @@ "title": "it should correctly set DTEND when using different timezone in calendar and event", "fullTitle": "Issues Issue #154 it should correctly set DTEND when using different timezone in calendar and event", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -9271,8 +9271,8 @@ "context": null, "code": "const calendar=ical({timezone:\"America/Buenos_Aires\",events:[{start:moment(1553219772e3),end:moment(1553219772e3),recurrenceId:moment(1553219772e3),timezone:\"America/La_Paz\"}]});const str=calendar.toString();assert.ok(str.indexOf(`${prop};TZID=America/La_Paz:20190321T215612`)>-1,str)", "err": {}, - "uuid": "e51c5cec-3691-4749-bc3d-86bb08573487", - "parentUUID": "b949a2b1-4472-4f4b-974d-edbc5b78a578", + "uuid": "5a791b4a-457d-434e-9780-b1ee5a83c7c4", + "parentUUID": "e9cc2726-7b46-4e7e-9887-f439fddffbc9", "isHook": false, "skipped": false }, @@ -9289,28 +9289,28 @@ "context": null, "code": "const calendar=ical({timezone:\"America/Buenos_Aires\",events:[{start:moment(1553219772e3),end:moment(1553219772e3),recurrenceId:moment(1553219772e3),timezone:\"America/La_Paz\"}]});const str=calendar.toString();assert.ok(str.indexOf(`${prop};TZID=America/La_Paz:20190321T215612`)>-1,str)", "err": {}, - "uuid": "12a11a51-3680-496f-bae8-2926c2f979c2", - "parentUUID": "b949a2b1-4472-4f4b-974d-edbc5b78a578", + "uuid": "13d83185-4005-41d8-a181-9eb7a28f84bc", + "parentUUID": "e9cc2726-7b46-4e7e-9887-f439fddffbc9", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "8917bb04-d306-42ce-9427-314deef0859e", - "e51c5cec-3691-4749-bc3d-86bb08573487", - "12a11a51-3680-496f-bae8-2926c2f979c2" + "0cd72ec3-b0e4-49d4-a6f2-fc996c52ff20", + "5a791b4a-457d-434e-9780-b1ee5a83c7c4", + "13d83185-4005-41d8-a181-9eb7a28f84bc" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "46c5ae63-b748-4ac8-945a-ecf402e4a791", + "uuid": "51f3801c-918e-4bb6-bd62-802ace05d072", "title": "Issue #210", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/issues.ts", "file": "/test/issues.ts", @@ -9321,7 +9321,7 @@ "title": "should repeat/exclude with Europe/Berlin", "fullTitle": "Issues Issue #210 should repeat/exclude with Europe/Berlin", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -9330,8 +9330,8 @@ "context": null, "code": "const calendar=ical({prodId:\"//superman-industries.com//ical-generator//EN\",timezone:\"Europe/Berlin\",events:[{start:moment(\"2020-08-13T00:00:00+01:00\"),summary:\"Example Event\",repeating:{freq:ICalEventRepeatingFreq.MONTHLY,count:12,exclude:moment(\"2020-12-13T00:00:00+01:00\")}}]});const str=calendar.toString();assert.ok(str.indexOf(\"EXDATE;TZID=Europe/Berlin:20201213T000000\")>-1)", "err": {}, - "uuid": "3d47562e-9819-422c-a762-61cacfe95941", - "parentUUID": "46c5ae63-b748-4ac8-945a-ecf402e4a791", + "uuid": "d12da3a7-1d73-434c-808b-d02036242705", + "parentUUID": "51f3801c-918e-4bb6-bd62-802ace05d072", "isHook": false, "skipped": false }, @@ -9348,27 +9348,27 @@ "context": null, "code": "const calendar=ical({prodId:\"//superman-industries.com//ical-generator//EN\",timezone:\"America/New_York\",events:[{start:moment(\"2020-08-13T00:00:00-05:00\"),summary:\"Example Event\",repeating:{freq:ICalEventRepeatingFreq.MONTHLY,count:12,exclude:moment(\"2020-12-13T00:00:00-05:00\")}}]});const str=calendar.toString();assert.ok(str.indexOf(\"EXDATE;TZID=America/New_York:20201213T000000\")>-1)", "err": {}, - "uuid": "8b1f0239-48be-499f-bfa1-41b1bae15102", - "parentUUID": "46c5ae63-b748-4ac8-945a-ecf402e4a791", + "uuid": "8b7c7bea-e64e-4777-90fa-fbe8743e2e4a", + "parentUUID": "51f3801c-918e-4bb6-bd62-802ace05d072", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "3d47562e-9819-422c-a762-61cacfe95941", - "8b1f0239-48be-499f-bfa1-41b1bae15102" + "d12da3a7-1d73-434c-808b-d02036242705", + "8b7c7bea-e64e-4777-90fa-fbe8743e2e4a" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 2, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "fdbea603-903f-4806-b62b-27132059babb", + "uuid": "99a29d63-5cc1-4e4d-882e-6896667d2aa9", "title": "Issue #236", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/issues.ts", "file": "/test/issues.ts", @@ -9379,7 +9379,7 @@ "title": "should look like in the example", "fullTitle": "Issues Issue #236 should look like in the example", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -9388,26 +9388,26 @@ "context": null, "code": "const calendar=ical({events:[{id:\"foo\",start:new Date(\"2020-08-13T00:00:00-05:00\"),stamp:new Date(\"2020-08-13T00:00:00-05:00\"),summary:\"Example Event\",location:{title:\"Los Angeles, California, United States\",geo:{lon:-118.24368,lat:34.05223},radius:400}}]});assert.strictEqual(calendar.toString(),[\"BEGIN:VCALENDAR\",\"VERSION:2.0\",\"PRODID:-//sebbo.net//ical-generator//EN\",\"BEGIN:VEVENT\",\"UID:foo\",\"SEQUENCE:0\",\"DTSTAMP:20200813T050000Z\",\"DTSTART:20200813T050000Z\",\"SUMMARY:Example Event\",\"LOCATION:Los Angeles\\\\, California\\\\, United States\",\"X-APPLE-STRUCTURED-LOCATION;VALUE=URI;X-APPLE-RADIUS=400;X-TITLE=Los Angel\",\" es\\\\, California\\\\, United States:geo:34.05223,-118.24368\",\"GEO:34.05223;-118.24368\",\"END:VEVENT\",\"END:VCALENDAR\"].join(\"\\r\\n\"))", "err": {}, - "uuid": "86b7242b-1475-4c59-a267-93dda49b0fd3", - "parentUUID": "fdbea603-903f-4806-b62b-27132059babb", + "uuid": "591f5769-319d-4e9c-bf8c-2659a3f7bb44", + "parentUUID": "99a29d63-5cc1-4e4d-882e-6896667d2aa9", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "86b7242b-1475-4c59-a267-93dda49b0fd3" + "591f5769-319d-4e9c-bf8c-2659a3f7bb44" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "4188306a-34ae-4b46-858e-4312416b6ae7", + "uuid": "4d6eff05-625b-4fb0-a86a-b8ba4317d4fb", "title": "Issue #377", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/issues.ts", "file": "/test/issues.ts", @@ -9418,7 +9418,7 @@ "title": "should not escape quotes in summary", "fullTitle": "Issues Issue #377 should not escape quotes in summary", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -9427,26 +9427,26 @@ "context": null, "code": "const calendar=ical({events:[{id:\"foo\",start:new Date(\"2020-08-13T00:00:00-05:00\"),stamp:new Date(\"2020-08-13T00:00:00-05:00\"),summary:'My \"quoted\" string'}]});assert.strictEqual(calendar.toString(),[\"BEGIN:VCALENDAR\",\"VERSION:2.0\",\"PRODID:-//sebbo.net//ical-generator//EN\",\"BEGIN:VEVENT\",\"UID:foo\",\"SEQUENCE:0\",\"DTSTAMP:20200813T050000Z\",\"DTSTART:20200813T050000Z\",'SUMMARY:My \"quoted\" string',\"END:VEVENT\",\"END:VCALENDAR\"].join(\"\\r\\n\"))", "err": {}, - "uuid": "03867b22-a773-43f4-ab6a-17d85e38edb7", - "parentUUID": "4188306a-34ae-4b46-858e-4312416b6ae7", + "uuid": "eb23c7cb-97bc-4a59-a43b-f4b89a9556d5", + "parentUUID": "4d6eff05-625b-4fb0-a86a-b8ba4317d4fb", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "03867b22-a773-43f4-ab6a-17d85e38edb7" + "eb23c7cb-97bc-4a59-a43b-f4b89a9556d5" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "a9c3b216-bcaf-45d6-8e19-426bd91f95a3", + "uuid": "1b46550e-5a65-4216-9a34-f4f043d398c7", "title": "Issue #442", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/issues.ts", "file": "/test/issues.ts", @@ -9466,8 +9466,8 @@ "context": null, "code": "", "err": {}, - "uuid": "cd2d679c-7e76-49c4-9213-37cac05f6cb5", - "parentUUID": "a9c3b216-bcaf-45d6-8e19-426bd91f95a3", + "uuid": "f57cb407-146f-4081-85f6-cbf1b134ebf3", + "parentUUID": "1b46550e-5a65-4216-9a34-f4f043d398c7", "isHook": false, "skipped": false }, @@ -9484,8 +9484,8 @@ "context": null, "code": "", "err": {}, - "uuid": "c4fb6250-3022-4a34-b2af-9a743d670191", - "parentUUID": "a9c3b216-bcaf-45d6-8e19-426bd91f95a3", + "uuid": "22b7a41e-4a22-4db6-8940-c9d42f30719c", + "parentUUID": "1b46550e-5a65-4216-9a34-f4f043d398c7", "isHook": false, "skipped": false } @@ -9494,8 +9494,8 @@ "passes": [], "failures": [], "pending": [ - "cd2d679c-7e76-49c4-9213-37cac05f6cb5", - "c4fb6250-3022-4a34-b2af-9a743d670191" + "f57cb407-146f-4081-85f6-cbf1b134ebf3", + "22b7a41e-4a22-4db6-8940-c9d42f30719c" ], "skipped": [], "duration": 0, @@ -9504,7 +9504,7 @@ "_timeout": 2000 }, { - "uuid": "700135fb-94c2-4fb4-b85c-52a8afea0b54", + "uuid": "b6926271-54f5-45c5-9ee2-64e4ef0e036b", "title": "Issue #459", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/issues.ts", "file": "/test/issues.ts", @@ -9515,7 +9515,7 @@ "title": "event.repeating should work with `RRULE:` prefix", "fullTitle": "Issues Issue #459 event.repeating should work with `RRULE:` prefix", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -9524,8 +9524,8 @@ "context": null, "code": "const calendar=ical({events:[{id:\"foo\",start:new Date(\"2020-08-13T00:00:00-05:00\"),stamp:new Date(\"2020-08-13T00:00:00-05:00\"),summary:\"Example Event\",repeating:\"RRULE:FREQ=MONTHLY;COUNT=3;INTERVAL=1\"}]});assert.strictEqual(calendar.toString(),[\"BEGIN:VCALENDAR\",\"VERSION:2.0\",\"PRODID:-//sebbo.net//ical-generator//EN\",\"BEGIN:VEVENT\",\"UID:foo\",\"SEQUENCE:0\",\"DTSTAMP:20200813T050000Z\",\"DTSTART:20200813T050000Z\",\"RRULE:FREQ=MONTHLY;COUNT=3;INTERVAL=1\",\"SUMMARY:Example Event\",\"END:VEVENT\",\"END:VCALENDAR\"].join(\"\\r\\n\"))", "err": {}, - "uuid": "be1dbb46-0e9e-4ec3-9eb1-21e419a1b3cf", - "parentUUID": "700135fb-94c2-4fb4-b85c-52a8afea0b54", + "uuid": "e628d60f-2563-41b6-bfe5-f86584ab0be7", + "parentUUID": "b6926271-54f5-45c5-9ee2-64e4ef0e036b", "isHook": false, "skipped": false }, @@ -9542,27 +9542,27 @@ "context": null, "code": "const calendar=ical({events:[{id:\"foo\",start:new Date(\"2020-08-13T00:00:00-05:00\"),stamp:new Date(\"2020-08-13T00:00:00-05:00\"),summary:\"Example Event\",repeating:\"FREQ=MONTHLY;COUNT=3;INTERVAL=1\"}]});assert.strictEqual(calendar.toString(),[\"BEGIN:VCALENDAR\",\"VERSION:2.0\",\"PRODID:-//sebbo.net//ical-generator//EN\",\"BEGIN:VEVENT\",\"UID:foo\",\"SEQUENCE:0\",\"DTSTAMP:20200813T050000Z\",\"DTSTART:20200813T050000Z\",\"RRULE:FREQ=MONTHLY;COUNT=3;INTERVAL=1\",\"SUMMARY:Example Event\",\"END:VEVENT\",\"END:VCALENDAR\"].join(\"\\r\\n\"))", "err": {}, - "uuid": "2f2faca4-5fdc-47d7-b755-d491ccdcd3bc", - "parentUUID": "700135fb-94c2-4fb4-b85c-52a8afea0b54", + "uuid": "dfa732fe-9601-4256-8834-8696ed1d1715", + "parentUUID": "b6926271-54f5-45c5-9ee2-64e4ef0e036b", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "be1dbb46-0e9e-4ec3-9eb1-21e419a1b3cf", - "2f2faca4-5fdc-47d7-b755-d491ccdcd3bc" + "e628d60f-2563-41b6-bfe5-f86584ab0be7", + "dfa732fe-9601-4256-8834-8696ed1d1715" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "3ce22cb0-7939-4915-976b-43692363a740", + "uuid": "d3382e61-86fa-4d42-a450-d10511f26bca", "title": "Issue #569 / 570", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/issues.ts", "file": "/test/issues.ts", @@ -9573,7 +9573,7 @@ "title": "event.location should work with `geo` only", "fullTitle": "Issues Issue #569 / 570 event.location should work with `geo` only", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -9582,26 +9582,26 @@ "context": null, "code": "const event=ical().createEvent({id:\"12345\",summary:\"Hello\",start:new Date(\"2020-06-15T00:00:00Z\"),end:new Date(\"2020-06-15T01:00:00Z\"),stamp:new Date(\"2020-06-15T00:00:00Z\")});event.location({geo:{lat:52.51147570081018,lon:13.342200696373846}});assert.strictEqual(event.toString(),[\"BEGIN:VEVENT\",\"UID:12345\",\"SEQUENCE:0\",\"DTSTAMP:20200615T000000Z\",\"DTSTART:20200615T000000Z\",\"DTEND:20200615T010000Z\",\"SUMMARY:Hello\",\"GEO:52.51147570081018;13.342200696373846\",\"END:VEVENT\",\"\"].join(\"\\r\\n\"))", "err": {}, - "uuid": "e1ef8f37-1e82-48fc-a021-361839138a51", - "parentUUID": "3ce22cb0-7939-4915-976b-43692363a740", + "uuid": "08cf2901-0a95-4a73-946e-5e62a0e0c73b", + "parentUUID": "d3382e61-86fa-4d42-a450-d10511f26bca", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "e1ef8f37-1e82-48fc-a021-361839138a51" + "08cf2901-0a95-4a73-946e-5e62a0e0c73b" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "1b0f63f6-b13b-475b-9699-13683f58433e", + "uuid": "79ba7d8d-e1fb-4689-b741-23b6df5a8667", "title": "Issue #581", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/issues.ts", "file": "/test/issues.ts", @@ -9621,15 +9621,15 @@ "context": null, "code": "const calendar=ical();const event=calendar.createEvent({summary:\"Test Event\",start:\"2024-02-29T17:00:00.000Z\",end:\"2024-02-29T17:20:00.000Z\"});event.start(\"2024-02-29T19:00:00.000Z\");event.end(\"2024-02-29T19:20:00.000Z\");const start=event.start();assert.ok(typeof start===\"string\");assert.strictEqual(start,\"2024-02-29T19:00:00.000Z\");const end=event.end();assert.ok(typeof end===\"string\");assert.strictEqual(end,\"2024-02-29T19:20:00.000Z\")", "err": {}, - "uuid": "bb6dc8e3-5ae6-46cf-96a0-fa64568f76c5", - "parentUUID": "1b0f63f6-b13b-475b-9699-13683f58433e", + "uuid": "fa20f837-cf6b-41e2-a9d2-a81d95b1b2e6", + "parentUUID": "79ba7d8d-e1fb-4689-b741-23b6df5a8667", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "bb6dc8e3-5ae6-46cf-96a0-fa64568f76c5" + "fa20f837-cf6b-41e2-a9d2-a81d95b1b2e6" ], "failures": [], "pending": [], @@ -9640,7 +9640,7 @@ "_timeout": 2000 }, { - "uuid": "ee17cd36-0346-4c12-a274-9b5537d10d6e", + "uuid": "1193604c-a941-4a54-8fa0-bdd41e77a7e9", "title": "Issue #618", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/issues.ts", "file": "/test/issues.ts", @@ -9660,15 +9660,15 @@ "context": null, "code": "assert.throws(()=>{const calendar=ical();calendar.createEvent({summary:\"Test Event\",start:new Date,location:{title:\"Empty Venue\",address:null,geo:{lat:null,lon:null}}})},/`location` isn't formatted correctly/)", "err": {}, - "uuid": "30ded5f5-a987-49b6-b400-55d1cbab7110", - "parentUUID": "ee17cd36-0346-4c12-a274-9b5537d10d6e", + "uuid": "70078120-f473-4af5-a634-71dae59e02af", + "parentUUID": "1193604c-a941-4a54-8fa0-bdd41e77a7e9", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "30ded5f5-a987-49b6-b400-55d1cbab7110" + "70078120-f473-4af5-a634-71dae59e02af" ], "failures": [], "pending": [], @@ -9689,7 +9689,7 @@ "_timeout": 2000 }, { - "uuid": "1f05b2c5-ff07-45f6-8f35-709c461313b9", + "uuid": "734da191-8b31-4698-bb02-297e4851cc07", "title": "ICalTools", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -9698,7 +9698,7 @@ "tests": [], "suites": [ { - "uuid": "d39be7df-0e0b-4da2-ad83-0a3eb760ff9c", + "uuid": "172c764f-e276-49b1-8a66-f1f210465e9b", "title": "formatDate()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -9707,7 +9707,7 @@ "tests": [], "suites": [ { - "uuid": "d94f0795-c21d-4c2e-88c3-086cec33523f", + "uuid": "d9c2443d-691f-44b2-91f7-3d2fdfefcf33", "title": "Date / String", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -9727,8 +9727,8 @@ "context": null, "code": "assert.strictEqual(formatDate(null,\"2018-07-05T18:24:00.052Z\",false,false),\"20180705T182400Z\")", "err": {}, - "uuid": "399625ed-4370-436e-8d42-2570a4d6763a", - "parentUUID": "d94f0795-c21d-4c2e-88c3-086cec33523f", + "uuid": "bee13ac4-1c90-4069-bb18-bec71612e7e8", + "parentUUID": "d9c2443d-691f-44b2-91f7-3d2fdfefcf33", "isHook": false, "skipped": false }, @@ -9745,8 +9745,8 @@ "context": null, "code": "assert.strictEqual(formatDate(null,\"2018-07-05T18:24:00.052Z\",false,true),\"20180705T182400\")", "err": {}, - "uuid": "273f8886-b3d4-44d3-8155-3600169c466d", - "parentUUID": "d94f0795-c21d-4c2e-88c3-086cec33523f", + "uuid": "641d2ef6-6dcf-4533-9643-50eae3cfbf8f", + "parentUUID": "d9c2443d-691f-44b2-91f7-3d2fdfefcf33", "isHook": false, "skipped": false }, @@ -9763,8 +9763,8 @@ "context": null, "code": "assert.strictEqual(formatDate(null,\"2018-07-05T18:24:00.052Z\",true,false),\"20180705\")", "err": {}, - "uuid": "17a9b736-a7dd-4b90-9caf-e04614236349", - "parentUUID": "d94f0795-c21d-4c2e-88c3-086cec33523f", + "uuid": "a2e83823-2e43-4f1b-b907-9ce6ac3b87b4", + "parentUUID": "d9c2443d-691f-44b2-91f7-3d2fdfefcf33", "isHook": false, "skipped": false }, @@ -9772,7 +9772,7 @@ "title": "timezone=0 dateonly=1 floating=1", "fullTitle": "ICalTools formatDate() Date / String timezone=0 dateonly=1 floating=1", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -9781,8 +9781,8 @@ "context": null, "code": "assert.strictEqual(formatDate(null,\"2018-07-05T18:24:00.052Z\",true,true),\"20180705\")", "err": {}, - "uuid": "1a86537d-2259-442b-ad83-39ffd1a7bc7d", - "parentUUID": "d94f0795-c21d-4c2e-88c3-086cec33523f", + "uuid": "6ea6a58f-bf66-4765-bb02-1982e6c25f36", + "parentUUID": "d9c2443d-691f-44b2-91f7-3d2fdfefcf33", "isHook": false, "skipped": false }, @@ -9799,8 +9799,8 @@ "context": null, "code": "assert.strictEqual(formatDate(\"Europe/Berlin\",\"2018-07-05T18:24:00.052\",false,false),\"20180705T182400\")", "err": {}, - "uuid": "41f53e7c-d477-48bd-af99-d6a79aa08086", - "parentUUID": "d94f0795-c21d-4c2e-88c3-086cec33523f", + "uuid": "cc05c0eb-36ac-4eda-bc1e-52a7f2e83a58", + "parentUUID": "d9c2443d-691f-44b2-91f7-3d2fdfefcf33", "isHook": false, "skipped": false }, @@ -9817,8 +9817,8 @@ "context": null, "code": "assert.strictEqual(formatDate(\"Europe/Berlin\",\"2018-07-05T18:24:00.052\",false,true),\"20180705T182400\")", "err": {}, - "uuid": "2ec4a8e9-6695-4911-929e-6633fa9856e2", - "parentUUID": "d94f0795-c21d-4c2e-88c3-086cec33523f", + "uuid": "abbddd5f-abeb-4702-b00a-c2ed9d177fb1", + "parentUUID": "d9c2443d-691f-44b2-91f7-3d2fdfefcf33", "isHook": false, "skipped": false }, @@ -9835,8 +9835,8 @@ "context": null, "code": "assert.strictEqual(formatDate(\"Europe/Berlin\",\"2018-07-05T18:24:00.052\",true,false),\"20180705\")", "err": {}, - "uuid": "bb5e7402-16ee-4f95-aa77-00c51c811882", - "parentUUID": "d94f0795-c21d-4c2e-88c3-086cec33523f", + "uuid": "1a931e85-8224-4138-8c7d-a67dd37e9c5a", + "parentUUID": "d9c2443d-691f-44b2-91f7-3d2fdfefcf33", "isHook": false, "skipped": false }, @@ -9853,8 +9853,8 @@ "context": null, "code": "assert.strictEqual(formatDate(\"Europe/Berlin\",\"2018-07-05T18:24:00.052\",true,true),\"20180705\")", "err": {}, - "uuid": "a5a1a0c1-a5de-4f98-bb50-e506eef6c9e5", - "parentUUID": "d94f0795-c21d-4c2e-88c3-086cec33523f", + "uuid": "d875320b-38d2-47bd-931b-8b503470c20e", + "parentUUID": "d9c2443d-691f-44b2-91f7-3d2fdfefcf33", "isHook": false, "skipped": false }, @@ -9871,34 +9871,34 @@ "context": null, "code": "assert.strictEqual(formatDate(\"/Europe/Berlin\",\"2018-07-05T18:24:00.052\",false,false),\"20180705T182400\")", "err": {}, - "uuid": "33cf0860-c772-462e-bf8c-e227e6a06244", - "parentUUID": "d94f0795-c21d-4c2e-88c3-086cec33523f", + "uuid": "90b2f32f-fbf2-4a03-ae59-1dc88b783aab", + "parentUUID": "d9c2443d-691f-44b2-91f7-3d2fdfefcf33", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "399625ed-4370-436e-8d42-2570a4d6763a", - "273f8886-b3d4-44d3-8155-3600169c466d", - "17a9b736-a7dd-4b90-9caf-e04614236349", - "1a86537d-2259-442b-ad83-39ffd1a7bc7d", - "41f53e7c-d477-48bd-af99-d6a79aa08086", - "2ec4a8e9-6695-4911-929e-6633fa9856e2", - "bb5e7402-16ee-4f95-aa77-00c51c811882", - "a5a1a0c1-a5de-4f98-bb50-e506eef6c9e5", - "33cf0860-c772-462e-bf8c-e227e6a06244" + "bee13ac4-1c90-4069-bb18-bec71612e7e8", + "641d2ef6-6dcf-4533-9643-50eae3cfbf8f", + "a2e83823-2e43-4f1b-b907-9ce6ac3b87b4", + "6ea6a58f-bf66-4765-bb02-1982e6c25f36", + "cc05c0eb-36ac-4eda-bc1e-52a7f2e83a58", + "abbddd5f-abeb-4702-b00a-c2ed9d177fb1", + "1a931e85-8224-4138-8c7d-a67dd37e9c5a", + "d875320b-38d2-47bd-931b-8b503470c20e", + "90b2f32f-fbf2-4a03-ae59-1dc88b783aab" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "483589e6-8c26-4c11-bcd7-e45e9b968c0b", + "uuid": "b5ffd1bc-46d9-4d80-9d78-cd5f2a5290d3", "title": "moment.js", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -9909,7 +9909,7 @@ "title": "should work without setting a timezone", "fullTitle": "ICalTools formatDate() moment.js should work without setting a timezone", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -9918,8 +9918,8 @@ "context": null, "code": "assert.strictEqual(formatDate(null,moment(\"2018-07-05T18:24:00.052Z\"),false,false),\"20180705T182400Z\")", "err": {}, - "uuid": "de6c8979-acc6-4e85-8967-8babe103ea07", - "parentUUID": "483589e6-8c26-4c11-bcd7-e45e9b968c0b", + "uuid": "ab9dd037-179b-4dde-a401-c2bb7f5a25f2", + "parentUUID": "b5ffd1bc-46d9-4d80-9d78-cd5f2a5290d3", "isHook": false, "skipped": false }, @@ -9936,8 +9936,8 @@ "context": null, "code": "assert.strictEqual(formatDate(\"Canada/Saskatchewan\",moment(\"2018-07-05T18:24:00.052Z\"),false,false),\"20180705T122400\")", "err": {}, - "uuid": "9b39522c-8ba8-44de-9619-a5be4a37fab7", - "parentUUID": "483589e6-8c26-4c11-bcd7-e45e9b968c0b", + "uuid": "33bac1a8-ccb9-41d6-af60-c740a155461d", + "parentUUID": "b5ffd1bc-46d9-4d80-9d78-cd5f2a5290d3", "isHook": false, "skipped": false }, @@ -9945,7 +9945,7 @@ "title": "should work with floating flag", "fullTitle": "ICalTools formatDate() moment.js should work with floating flag", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -9954,17 +9954,17 @@ "context": null, "code": "assert.strictEqual(formatDate(null,moment(\"2018-07-05T18:24:00.052\"),false,true),\"20180705T182400\")", "err": {}, - "uuid": "bd2eebcb-85a8-45ce-bf5a-d392d1bc2db1", - "parentUUID": "483589e6-8c26-4c11-bcd7-e45e9b968c0b", + "uuid": "99f3257d-59d1-4b40-bd27-ae29ef86793c", + "parentUUID": "b5ffd1bc-46d9-4d80-9d78-cd5f2a5290d3", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "de6c8979-acc6-4e85-8967-8babe103ea07", - "9b39522c-8ba8-44de-9619-a5be4a37fab7", - "bd2eebcb-85a8-45ce-bf5a-d392d1bc2db1" + "ab9dd037-179b-4dde-a401-c2bb7f5a25f2", + "33bac1a8-ccb9-41d6-af60-c740a155461d", + "99f3257d-59d1-4b40-bd27-ae29ef86793c" ], "failures": [], "pending": [], @@ -9975,7 +9975,7 @@ "_timeout": 2000 }, { - "uuid": "4902444b-dce6-44fd-b18d-f6f546f6cf8a", + "uuid": "69036422-f655-4156-b649-7749bb04c4a9", "title": "moment-timezone.js", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -9986,7 +9986,7 @@ "title": "should work without setting a timezone", "fullTitle": "ICalTools formatDate() moment-timezone.js should work without setting a timezone", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -9995,8 +9995,8 @@ "context": null, "code": "assert.strictEqual(formatDate(null,momentTz(\"2018-07-05T18:24:00.052Z\"),false,false),\"20180705T182400Z\")", "err": {}, - "uuid": "fbabca58-3d94-47a8-a8a1-ce548b9029c5", - "parentUUID": "4902444b-dce6-44fd-b18d-f6f546f6cf8a", + "uuid": "96d5a75e-5013-4e71-97bc-337a82f82e6e", + "parentUUID": "69036422-f655-4156-b649-7749bb04c4a9", "isHook": false, "skipped": false }, @@ -10013,8 +10013,8 @@ "context": null, "code": "assert.strictEqual(formatDate(\"Canada/Saskatchewan\",momentTz(\"2018-07-05T18:24:00.052Z\"),false,false),\"20180705T122400\")", "err": {}, - "uuid": "b49e7c86-8e8c-49b4-959e-1b550b628e9c", - "parentUUID": "4902444b-dce6-44fd-b18d-f6f546f6cf8a", + "uuid": "7e9b845e-4a94-4930-9a16-ab609e5097fe", + "parentUUID": "69036422-f655-4156-b649-7749bb04c4a9", "isHook": false, "skipped": false }, @@ -10031,28 +10031,28 @@ "context": null, "code": "assert.strictEqual(formatDate(null,momentTz(\"2018-07-05T18:24:00.052\"),false,true),\"20180705T182400\")", "err": {}, - "uuid": "3ad936a7-1f58-427b-9478-473ae7f17e21", - "parentUUID": "4902444b-dce6-44fd-b18d-f6f546f6cf8a", + "uuid": "1b67a211-f8fe-4fc8-9a94-7ee206cd74bc", + "parentUUID": "69036422-f655-4156-b649-7749bb04c4a9", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "fbabca58-3d94-47a8-a8a1-ce548b9029c5", - "b49e7c86-8e8c-49b4-959e-1b550b628e9c", - "3ad936a7-1f58-427b-9478-473ae7f17e21" + "96d5a75e-5013-4e71-97bc-337a82f82e6e", + "7e9b845e-4a94-4930-9a16-ab609e5097fe", + "1b67a211-f8fe-4fc8-9a94-7ee206cd74bc" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "e5fd1192-df5f-4ba7-8a5f-98035f98e404", + "uuid": "b869ab56-f020-4eb1-81ca-04134589bc87", "title": "Luxon", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -10072,8 +10072,8 @@ "context": null, "code": "assert.strictEqual(formatDate(null,DateTime.fromISO(\"2018-07-05T18:24:00.052Z\"),false,false),\"20180705T182400Z\")", "err": {}, - "uuid": "1c9522a4-c75c-4bd4-89c1-115799012df3", - "parentUUID": "e5fd1192-df5f-4ba7-8a5f-98035f98e404", + "uuid": "be2a26dd-98b2-43a9-9a71-c081a6b78eb5", + "parentUUID": "b869ab56-f020-4eb1-81ca-04134589bc87", "isHook": false, "skipped": false }, @@ -10090,8 +10090,8 @@ "context": null, "code": "assert.strictEqual(formatDate(\"Canada/Saskatchewan\",DateTime.fromISO(\"2018-07-05T18:24:00.052Z\"),false,false),\"20180705T122400\")", "err": {}, - "uuid": "f60bf9a5-9f70-4688-8388-30b48b0e0e8a", - "parentUUID": "e5fd1192-df5f-4ba7-8a5f-98035f98e404", + "uuid": "634251a6-701e-4c60-b56e-c80b62ad8097", + "parentUUID": "b869ab56-f020-4eb1-81ca-04134589bc87", "isHook": false, "skipped": false }, @@ -10099,7 +10099,7 @@ "title": "should work with floating flag", "fullTitle": "ICalTools formatDate() Luxon should work with floating flag", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -10108,8 +10108,8 @@ "context": null, "code": "assert.strictEqual(formatDate(null,DateTime.fromISO(\"2018-07-05T18:24:00.052\"),false,true),\"20180705T182400\")", "err": {}, - "uuid": "eabc8bfe-c7d0-4ab2-b2fc-b871f655408d", - "parentUUID": "e5fd1192-df5f-4ba7-8a5f-98035f98e404", + "uuid": "3b0e2319-7be5-4007-a3b4-e319bad42db8", + "parentUUID": "b869ab56-f020-4eb1-81ca-04134589bc87", "isHook": false, "skipped": false }, @@ -10126,8 +10126,8 @@ "context": null, "code": "assert.strictEqual(formatDate(null,DateTime.fromISO(\"2018-07-05T18:24:00.052\"),true,false),\"20180705\")", "err": {}, - "uuid": "ea18d6be-3da2-444b-acdc-9d8f7faacef1", - "parentUUID": "e5fd1192-df5f-4ba7-8a5f-98035f98e404", + "uuid": "c0d80525-497a-4398-8148-027980186353", + "parentUUID": "b869ab56-f020-4eb1-81ca-04134589bc87", "isHook": false, "skipped": false }, @@ -10135,7 +10135,7 @@ "title": "should work with dateonly flag, non floating, and date with timezone", "fullTitle": "ICalTools formatDate() Luxon should work with dateonly flag, non floating, and date with timezone", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -10144,19 +10144,19 @@ "context": null, "code": "assert.strictEqual(formatDate(null,DateTime.fromISO(\"2024-03-17T00:00:00.000+01:00\",{setZone:true}),true),\"20240317\")", "err": {}, - "uuid": "a38da4c3-e2e4-4bf5-8fcb-344f2275aed7", - "parentUUID": "e5fd1192-df5f-4ba7-8a5f-98035f98e404", + "uuid": "6f052bff-a3e4-4713-a017-a64433948f85", + "parentUUID": "b869ab56-f020-4eb1-81ca-04134589bc87", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "1c9522a4-c75c-4bd4-89c1-115799012df3", - "f60bf9a5-9f70-4688-8388-30b48b0e0e8a", - "eabc8bfe-c7d0-4ab2-b2fc-b871f655408d", - "ea18d6be-3da2-444b-acdc-9d8f7faacef1", - "a38da4c3-e2e4-4bf5-8fcb-344f2275aed7" + "be2a26dd-98b2-43a9-9a71-c081a6b78eb5", + "634251a6-701e-4c60-b56e-c80b62ad8097", + "3b0e2319-7be5-4007-a3b4-e319bad42db8", + "c0d80525-497a-4398-8148-027980186353", + "6f052bff-a3e4-4713-a017-a64433948f85" ], "failures": [], "pending": [], @@ -10167,7 +10167,7 @@ "_timeout": 2000 }, { - "uuid": "6bdbec65-ff52-476b-ac84-1b1bb6f113ca", + "uuid": "bf185f2c-5bcb-48dc-880e-523f81b2edd6", "title": "Day.js", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -10178,7 +10178,7 @@ "title": "should work without setting a timezone", "fullTitle": "ICalTools formatDate() Day.js should work without setting a timezone", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -10187,8 +10187,8 @@ "context": null, "code": "assert.strictEqual(formatDate(null,dayjs(\"2018-07-05T18:24:00.052Z\"),false,false),\"20180705T182400Z\")", "err": {}, - "uuid": "74644aef-2389-42b3-a36a-0a854897ebe9", - "parentUUID": "6bdbec65-ff52-476b-ac84-1b1bb6f113ca", + "uuid": "06009953-8dc3-47c5-9493-16f61c1af190", + "parentUUID": "bf185f2c-5bcb-48dc-880e-523f81b2edd6", "isHook": false, "skipped": false }, @@ -10196,7 +10196,7 @@ "title": "should work with timezone in event / calendar (with moment-timezone)", "fullTitle": "ICalTools formatDate() Day.js should work with timezone in event / calendar (with moment-timezone)", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -10205,8 +10205,8 @@ "context": null, "code": "assert.strictEqual(formatDate(\"Canada/Saskatchewan\",dayjs(\"2018-07-05T18:24:00.052Z\"),false,false),\"20180705T122400\")", "err": {}, - "uuid": "c8e70190-6cec-4acd-bdbf-099b76399925", - "parentUUID": "6bdbec65-ff52-476b-ac84-1b1bb6f113ca", + "uuid": "2fb29db3-c3cf-48c1-8cfb-4c9dca13cbdd", + "parentUUID": "bf185f2c-5bcb-48dc-880e-523f81b2edd6", "isHook": false, "skipped": false }, @@ -10223,8 +10223,8 @@ "context": null, "code": "assert.strictEqual(formatDate(null,dayjs(\"2018-07-05T18:24:00.052\"),false,true),\"20180705T182400\")", "err": {}, - "uuid": "443bc9b8-0c9a-43f8-9762-f6262886546f", - "parentUUID": "6bdbec65-ff52-476b-ac84-1b1bb6f113ca", + "uuid": "a39d8075-5d0d-4f85-92c7-3afa95925822", + "parentUUID": "bf185f2c-5bcb-48dc-880e-523f81b2edd6", "isHook": false, "skipped": false }, @@ -10241,23 +10241,23 @@ "context": null, "code": "assert.strictEqual(formatDate(null,dayjs(\"2018-07-05T18:24:00.052\"),true,false),\"20180705\")", "err": {}, - "uuid": "09b0dceb-cce8-40d6-871b-6bf3f7b1f964", - "parentUUID": "6bdbec65-ff52-476b-ac84-1b1bb6f113ca", + "uuid": "ac419b68-f173-4ea9-852e-5a4aa7f18dab", + "parentUUID": "bf185f2c-5bcb-48dc-880e-523f81b2edd6", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "74644aef-2389-42b3-a36a-0a854897ebe9", - "c8e70190-6cec-4acd-bdbf-099b76399925", - "443bc9b8-0c9a-43f8-9762-f6262886546f", - "09b0dceb-cce8-40d6-871b-6bf3f7b1f964" + "06009953-8dc3-47c5-9493-16f61c1af190", + "2fb29db3-c3cf-48c1-8cfb-4c9dca13cbdd", + "a39d8075-5d0d-4f85-92c7-3afa95925822", + "ac419b68-f173-4ea9-852e-5a4aa7f18dab" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 2, "root": false, "rootEmpty": false, "_timeout": 2000 @@ -10273,7 +10273,7 @@ "_timeout": 2000 }, { - "uuid": "ee20caf4-8205-4173-9911-fcf595599d22", + "uuid": "561af575-77fe-47d7-9ce7-08099a491173", "title": "formatDateTZ()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -10284,7 +10284,7 @@ "title": "should work with timezone", "fullTitle": "ICalTools formatDateTZ() should work with timezone", "timedOut": false, - "duration": 0, + "duration": 1, "state": "passed", "speed": "fast", "pass": true, @@ -10293,8 +10293,8 @@ "context": null, "code": "const ed={timezone:\"Europe/Berlin\"};assert.strictEqual(formatDateTZ(\"Europe/Berlin\",\"DSTART\",moment(\"2018-07-02T15:48:05.000Z\"),ed),\"DSTART;TZID=Europe/Berlin:20180702T174805\")", "err": {}, - "uuid": "2835de56-5ef0-4faf-9530-92781c906eea", - "parentUUID": "ee20caf4-8205-4173-9911-fcf595599d22", + "uuid": "24b96a4d-7764-4b2a-8b74-214dc67e5ea6", + "parentUUID": "561af575-77fe-47d7-9ce7-08099a491173", "isHook": false, "skipped": false }, @@ -10311,8 +10311,8 @@ "context": null, "code": "assert.strictEqual(formatDateTZ(null,\"DSTART\",\"2018-07-02T15:48:05.000Z\",{}),\"DSTART:20180702T154805Z\")", "err": {}, - "uuid": "39a07ece-238a-456f-9a3a-9610e3994547", - "parentUUID": "ee20caf4-8205-4173-9911-fcf595599d22", + "uuid": "5db1b909-b702-4ffc-a7ae-329fdeaff12e", + "parentUUID": "561af575-77fe-47d7-9ce7-08099a491173", "isHook": false, "skipped": false }, @@ -10329,28 +10329,28 @@ "context": null, "code": "assert.strictEqual(formatDateTZ(null,\"DSTART\",\"2018-07-02T15:48:05.000Z\"),\"DSTART:20180702T154805Z\")", "err": {}, - "uuid": "5f8f2c91-84a6-4d1c-ad03-44c14fc9c983", - "parentUUID": "ee20caf4-8205-4173-9911-fcf595599d22", + "uuid": "e4a785cf-801f-4836-aef3-b6dea68d8439", + "parentUUID": "561af575-77fe-47d7-9ce7-08099a491173", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "2835de56-5ef0-4faf-9530-92781c906eea", - "39a07ece-238a-456f-9a3a-9610e3994547", - "5f8f2c91-84a6-4d1c-ad03-44c14fc9c983" + "24b96a4d-7764-4b2a-8b74-214dc67e5ea6", + "5db1b909-b702-4ffc-a7ae-329fdeaff12e", + "e4a785cf-801f-4836-aef3-b6dea68d8439" ], "failures": [], "pending": [], "skipped": [], - "duration": 0, + "duration": 1, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "d8efc3e8-996f-4d6b-bccb-cdbc0a63e491", + "uuid": "c3d1f9cd-d7ff-48e1-9ca3-312281af5e4c", "title": "escape()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -10370,8 +10370,8 @@ "context": null, "code": "assert.strictEqual(escape(\"Lorem \\\\ipsum\",false),\"Lorem \\\\\\\\ipsum\")", "err": {}, - "uuid": "52ec3057-10b4-46d3-9d22-b5c2b5f0650f", - "parentUUID": "d8efc3e8-996f-4d6b-bccb-cdbc0a63e491", + "uuid": "ce188188-5eaa-455d-98ea-f851c2cd4f4b", + "parentUUID": "c3d1f9cd-d7ff-48e1-9ca3-312281af5e4c", "isHook": false, "skipped": false }, @@ -10388,8 +10388,8 @@ "context": null, "code": "assert.strictEqual(escape(\"Lorem ;ipsum\",false),\"Lorem \\\\;ipsum\")", "err": {}, - "uuid": "a7b36186-6f0d-45d4-9679-68a273f01242", - "parentUUID": "d8efc3e8-996f-4d6b-bccb-cdbc0a63e491", + "uuid": "ba67996c-ded5-45a0-95fa-87a41c298bad", + "parentUUID": "c3d1f9cd-d7ff-48e1-9ca3-312281af5e4c", "isHook": false, "skipped": false }, @@ -10406,8 +10406,8 @@ "context": null, "code": "assert.strictEqual(escape(\"Lorem, ipsum\",false),\"Lorem\\\\, ipsum\")", "err": {}, - "uuid": "4eb5e209-9668-4528-b4dd-a5afab98696e", - "parentUUID": "d8efc3e8-996f-4d6b-bccb-cdbc0a63e491", + "uuid": "c0ee59b7-ffb3-4bde-a7c7-011c510955f1", + "parentUUID": "c3d1f9cd-d7ff-48e1-9ca3-312281af5e4c", "isHook": false, "skipped": false }, @@ -10424,8 +10424,8 @@ "context": null, "code": "assert.strictEqual(escape(\"Lorem \\ripsum\",false),\"Lorem \\\\nipsum\")", "err": {}, - "uuid": "c429d496-cd47-40ca-ae8f-56f750923c32", - "parentUUID": "d8efc3e8-996f-4d6b-bccb-cdbc0a63e491", + "uuid": "f6219843-b64d-4892-b9df-3c7da1c95450", + "parentUUID": "c3d1f9cd-d7ff-48e1-9ca3-312281af5e4c", "isHook": false, "skipped": false }, @@ -10442,8 +10442,8 @@ "context": null, "code": "assert.strictEqual(escape(\"Lorem \\nipsum\",false),\"Lorem \\\\nipsum\")", "err": {}, - "uuid": "5f466074-2dc3-4456-ad7f-05e0df314861", - "parentUUID": "d8efc3e8-996f-4d6b-bccb-cdbc0a63e491", + "uuid": "0081294d-8c00-463e-8367-d4bf334d0882", + "parentUUID": "c3d1f9cd-d7ff-48e1-9ca3-312281af5e4c", "isHook": false, "skipped": false }, @@ -10460,8 +10460,8 @@ "context": null, "code": "assert.strictEqual(escape(\"Lorem \\r\\nipsum\",false),\"Lorem \\\\nipsum\")", "err": {}, - "uuid": "74dece99-2b5f-4ebd-8deb-8c2990b60195", - "parentUUID": "d8efc3e8-996f-4d6b-bccb-cdbc0a63e491", + "uuid": "97062b54-e117-491b-a4e6-8feac5b6ce31", + "parentUUID": "c3d1f9cd-d7ff-48e1-9ca3-312281af5e4c", "isHook": false, "skipped": false }, @@ -10478,8 +10478,8 @@ "context": null, "code": "assert.strictEqual(escape('Lorem \"ipsum',true),'Lorem \\\\\"ipsum')", "err": {}, - "uuid": "5a990317-fe07-49c9-b6e4-4614c5edc9b1", - "parentUUID": "d8efc3e8-996f-4d6b-bccb-cdbc0a63e491", + "uuid": "7cd4010e-542e-4f16-9912-efd78c785d95", + "parentUUID": "c3d1f9cd-d7ff-48e1-9ca3-312281af5e4c", "isHook": false, "skipped": false }, @@ -10496,22 +10496,22 @@ "context": null, "code": "assert.strictEqual(escape('Lorem \"ipsum',false),'Lorem \"ipsum')", "err": {}, - "uuid": "d0545b5e-7b7f-484b-ae13-bd628d88e53f", - "parentUUID": "d8efc3e8-996f-4d6b-bccb-cdbc0a63e491", + "uuid": "abb5c26c-8157-4317-ad68-7153238282dc", + "parentUUID": "c3d1f9cd-d7ff-48e1-9ca3-312281af5e4c", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "52ec3057-10b4-46d3-9d22-b5c2b5f0650f", - "a7b36186-6f0d-45d4-9679-68a273f01242", - "4eb5e209-9668-4528-b4dd-a5afab98696e", - "c429d496-cd47-40ca-ae8f-56f750923c32", - "5f466074-2dc3-4456-ad7f-05e0df314861", - "74dece99-2b5f-4ebd-8deb-8c2990b60195", - "5a990317-fe07-49c9-b6e4-4614c5edc9b1", - "d0545b5e-7b7f-484b-ae13-bd628d88e53f" + "ce188188-5eaa-455d-98ea-f851c2cd4f4b", + "ba67996c-ded5-45a0-95fa-87a41c298bad", + "c0ee59b7-ffb3-4bde-a7c7-011c510955f1", + "f6219843-b64d-4892-b9df-3c7da1c95450", + "0081294d-8c00-463e-8367-d4bf334d0882", + "97062b54-e117-491b-a4e6-8feac5b6ce31", + "7cd4010e-542e-4f16-9912-efd78c785d95", + "abb5c26c-8157-4317-ad68-7153238282dc" ], "failures": [], "pending": [], @@ -10522,7 +10522,7 @@ "_timeout": 2000 }, { - "uuid": "90845703-4b8c-494b-8ce6-39acd3f8b197", + "uuid": "fce7dcb8-9213-48d9-8038-d17adfda9f8a", "title": "foldLines()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -10542,8 +10542,8 @@ "context": null, "code": "assert.strictEqual(foldLines(\"12345678ikjhgztrde546rf7g8hjiomkjnhgqfcdxerdftgzuinjhgcfvtzvzvuwcbiweciujzvguhbghbbqwxowidoi21e8981\"),\"12345678ikjhgztrde546rf7g8hjiomkjnhgqfcdxerdftgzuinjhgcfvtzvzvuwcbiweciujz\\r\\n vguhbghbbqwxowidoi21e8981\")", "err": {}, - "uuid": "1cc63b2f-a1a2-46a1-8270-0ab05b068214", - "parentUUID": "90845703-4b8c-494b-8ce6-39acd3f8b197", + "uuid": "9921d59b-6f75-4e49-a6a7-3a322784d2cb", + "parentUUID": "fce7dcb8-9213-48d9-8038-d17adfda9f8a", "isHook": false, "skipped": false }, @@ -10560,16 +10560,16 @@ "context": null, "code": "assert.strictEqual(foldLines(\"\\u{1F44B}\\u{1F3FC}12345678ikjhgztrde546rf7g8hjiomkjnhgqfcdxerdftgzuinjhgcfvtzvzvuwcbiweciujvguhbghbbqwxowidoi21e8981\"),\"\\u{1F44B}\\u{1F3FC}12345678ikjhgztrde546rf7g8hjiomkjnhgqfcdxerdftgzuinjhgcfvtzvzvuwcb\\r\\n iweciujvguhbghbbqwxowidoi21e8981\")", "err": {}, - "uuid": "618a460e-c061-4bdd-bc88-aaf439c85905", - "parentUUID": "90845703-4b8c-494b-8ce6-39acd3f8b197", + "uuid": "6481420d-5dfa-46a7-b7e4-35b9f95f43bf", + "parentUUID": "fce7dcb8-9213-48d9-8038-d17adfda9f8a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "1cc63b2f-a1a2-46a1-8270-0ab05b068214", - "618a460e-c061-4bdd-bc88-aaf439c85905" + "9921d59b-6f75-4e49-a6a7-3a322784d2cb", + "6481420d-5dfa-46a7-b7e4-35b9f95f43bf" ], "failures": [], "pending": [], @@ -10580,7 +10580,7 @@ "_timeout": 2000 }, { - "uuid": "3b7931cc-f254-4fad-9120-1e4e7642bd4d", + "uuid": "22d88ae0-e61a-4a5e-9a5a-02de2173d145", "title": "checkDate()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -10589,7 +10589,7 @@ "tests": [], "suites": [ { - "uuid": "e06ac2b0-6eb6-4408-a18b-27e119a02efc", + "uuid": "58b29d77-7ee7-4213-a187-761d8f382f0c", "title": "Date", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -10609,8 +10609,8 @@ "context": null, "code": "const date=new Date;assert.equal(checkDate(date,\"foo\"),date)", "err": {}, - "uuid": "404e82c6-5aa0-4fb4-98a3-aa12e7c71f23", - "parentUUID": "e06ac2b0-6eb6-4408-a18b-27e119a02efc", + "uuid": "f526ff6f-0b7d-45ee-921e-daca366d7d90", + "parentUUID": "58b29d77-7ee7-4213-a187-761d8f382f0c", "isHook": false, "skipped": false }, @@ -10627,16 +10627,16 @@ "context": null, "code": "const date=new Date(\"foo\");assert.throws(()=>{checkDate(date,\"foo\")},/`foo` has to be a valid date!/)", "err": {}, - "uuid": "ff66ea57-0562-4e03-bc19-50725a98a8db", - "parentUUID": "e06ac2b0-6eb6-4408-a18b-27e119a02efc", + "uuid": "be43e085-a786-4c4d-bc95-2368891534fe", + "parentUUID": "58b29d77-7ee7-4213-a187-761d8f382f0c", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "404e82c6-5aa0-4fb4-98a3-aa12e7c71f23", - "ff66ea57-0562-4e03-bc19-50725a98a8db" + "f526ff6f-0b7d-45ee-921e-daca366d7d90", + "be43e085-a786-4c4d-bc95-2368891534fe" ], "failures": [], "pending": [], @@ -10647,7 +10647,7 @@ "_timeout": 2000 }, { - "uuid": "78628e89-7315-4c1f-bfa0-60b0cb608146", + "uuid": "626c764e-5e92-434c-8696-1e6938bd2c66", "title": "String", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -10667,8 +10667,8 @@ "context": null, "code": "const date=\"2021-03-28T13:15:23.587Z\";assert.equal(checkDate(date,\"foo\"),date)", "err": {}, - "uuid": "b8650184-18ad-4b55-b6a3-3c177146993a", - "parentUUID": "78628e89-7315-4c1f-bfa0-60b0cb608146", + "uuid": "06aaa982-07b3-4a7b-909c-1059054fe48e", + "parentUUID": "626c764e-5e92-434c-8696-1e6938bd2c66", "isHook": false, "skipped": false }, @@ -10685,16 +10685,16 @@ "context": null, "code": "const date=\"foo\";assert.throws(()=>{checkDate(date,\"foo\")},/`foo` has to be a valid date!/)", "err": {}, - "uuid": "5ae7ec76-8dbb-482b-9ac9-fa435bec960a", - "parentUUID": "78628e89-7315-4c1f-bfa0-60b0cb608146", + "uuid": "24703ad1-d842-4ffc-9410-79ac099d1e6c", + "parentUUID": "626c764e-5e92-434c-8696-1e6938bd2c66", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "b8650184-18ad-4b55-b6a3-3c177146993a", - "5ae7ec76-8dbb-482b-9ac9-fa435bec960a" + "06aaa982-07b3-4a7b-909c-1059054fe48e", + "24703ad1-d842-4ffc-9410-79ac099d1e6c" ], "failures": [], "pending": [], @@ -10705,7 +10705,7 @@ "_timeout": 2000 }, { - "uuid": "0ec71cd1-3106-4149-b8e9-ddb2587e51f8", + "uuid": "2156bc52-dc8c-425f-ba26-30b8928836b3", "title": "Luxon", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -10725,8 +10725,8 @@ "context": null, "code": "const date=DateTime.now();assert.equal(checkDate(date,\"foo\"),date)", "err": {}, - "uuid": "5025745b-7953-4823-9557-a710d989f4d4", - "parentUUID": "0ec71cd1-3106-4149-b8e9-ddb2587e51f8", + "uuid": "6269210f-e2dc-4dda-859c-2c7df66fc433", + "parentUUID": "2156bc52-dc8c-425f-ba26-30b8928836b3", "isHook": false, "skipped": false }, @@ -10734,7 +10734,7 @@ "title": "should throw error for invalid Luxon", "fullTitle": "ICalTools checkDate() Luxon should throw error for invalid Luxon", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -10743,27 +10743,27 @@ "context": null, "code": "const date=DateTime.fromISO(\"foo\");assert.throws(()=>{checkDate(date,\"foo\")},/`foo` has to be a valid date!/)", "err": {}, - "uuid": "db67df43-c098-457e-a2f7-8b24ff78b0ab", - "parentUUID": "0ec71cd1-3106-4149-b8e9-ddb2587e51f8", + "uuid": "af7dcfb8-2a30-4c81-b7a5-d244a8de65d9", + "parentUUID": "2156bc52-dc8c-425f-ba26-30b8928836b3", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "5025745b-7953-4823-9557-a710d989f4d4", - "db67df43-c098-457e-a2f7-8b24ff78b0ab" + "6269210f-e2dc-4dda-859c-2c7df66fc433", + "af7dcfb8-2a30-4c81-b7a5-d244a8de65d9" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "4dd6fa0b-24b1-4691-91b6-7071ba13b750", + "uuid": "4a329439-4079-48c1-82e4-976ad659adc1", "title": "Moment", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -10783,8 +10783,8 @@ "context": null, "code": "const date=moment();assert.equal(checkDate(date,\"foo\"),date)", "err": {}, - "uuid": "8fdbf80e-5068-4dd4-9e84-775d61bcbbce", - "parentUUID": "4dd6fa0b-24b1-4691-91b6-7071ba13b750", + "uuid": "4f0829ba-55e0-4ad2-b8d6-ecd0ab7aa49a", + "parentUUID": "4a329439-4079-48c1-82e4-976ad659adc1", "isHook": false, "skipped": false }, @@ -10801,16 +10801,16 @@ "context": null, "code": "const date=moment(\"foo\",\"MM/DD/YYYY\",true);assert.throws(()=>{checkDate(date,\"foo\")},/`foo` has to be a valid date!/)", "err": {}, - "uuid": "d9b711b2-0711-4e93-86eb-24127a23ba23", - "parentUUID": "4dd6fa0b-24b1-4691-91b6-7071ba13b750", + "uuid": "58c745c3-a03b-4725-bcfc-58aa176ca6c1", + "parentUUID": "4a329439-4079-48c1-82e4-976ad659adc1", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "8fdbf80e-5068-4dd4-9e84-775d61bcbbce", - "d9b711b2-0711-4e93-86eb-24127a23ba23" + "4f0829ba-55e0-4ad2-b8d6-ecd0ab7aa49a", + "58c745c3-a03b-4725-bcfc-58aa176ca6c1" ], "failures": [], "pending": [], @@ -10821,7 +10821,7 @@ "_timeout": 2000 }, { - "uuid": "f76d85f1-4721-42ac-ae8e-b8abd262f0b0", + "uuid": "f14ae407-dee5-42be-8c03-17d73019f3a0", "title": "Day.js", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -10841,8 +10841,8 @@ "context": null, "code": "const date=dayjs();assert.equal(checkDate(date,\"foo\"),date)", "err": {}, - "uuid": "f31c76fc-d434-42bf-a4f4-a2059167adc9", - "parentUUID": "f76d85f1-4721-42ac-ae8e-b8abd262f0b0", + "uuid": "f9bb61e5-54ae-4b54-aa98-f6862fc5550e", + "parentUUID": "f14ae407-dee5-42be-8c03-17d73019f3a0", "isHook": false, "skipped": false }, @@ -10859,16 +10859,16 @@ "context": null, "code": "const date=dayjs(\"foo\");assert.throws(()=>{checkDate(date,\"foo\")},/`foo` has to be a valid date!/)", "err": {}, - "uuid": "29c61f18-59c0-476e-8eb2-a0cc742ecdbb", - "parentUUID": "f76d85f1-4721-42ac-ae8e-b8abd262f0b0", + "uuid": "8c3870b0-a141-4887-9cc6-356a65c6b487", + "parentUUID": "f14ae407-dee5-42be-8c03-17d73019f3a0", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "f31c76fc-d434-42bf-a4f4-a2059167adc9", - "29c61f18-59c0-476e-8eb2-a0cc742ecdbb" + "f9bb61e5-54ae-4b54-aa98-f6862fc5550e", + "8c3870b0-a141-4887-9cc6-356a65c6b487" ], "failures": [], "pending": [], @@ -10889,7 +10889,7 @@ "_timeout": 2000 }, { - "uuid": "75cb6e7f-1109-4685-b04d-c099401da8c8", + "uuid": "2884b3be-0527-477f-abcf-1e5503cf2d9c", "title": "toDate()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -10909,8 +10909,8 @@ "context": null, "code": "const date=new Date;assert.deepStrictEqual(toDate(date.toJSON()),date)", "err": {}, - "uuid": "f2afa273-773e-441b-998c-7e232efb2efa", - "parentUUID": "75cb6e7f-1109-4685-b04d-c099401da8c8", + "uuid": "8b230fed-16b6-495b-85cc-c5a77487519c", + "parentUUID": "2884b3be-0527-477f-abcf-1e5503cf2d9c", "isHook": false, "skipped": false }, @@ -10918,7 +10918,7 @@ "title": "should work with native Date", "fullTitle": "ICalTools toDate() should work with native Date", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -10927,8 +10927,8 @@ "context": null, "code": "const date=new Date;assert.deepStrictEqual(toDate(date),date)", "err": {}, - "uuid": "1cca1405-6725-4b12-beb7-0fbbc431b95e", - "parentUUID": "75cb6e7f-1109-4685-b04d-c099401da8c8", + "uuid": "b82f5bb3-8818-42b4-b144-472163c459a6", + "parentUUID": "2884b3be-0527-477f-abcf-1e5503cf2d9c", "isHook": false, "skipped": false }, @@ -10945,8 +10945,8 @@ "context": null, "code": "const date=new Date;assert.deepStrictEqual(toDate(moment(date)),date)", "err": {}, - "uuid": "c0f8f9ab-2f69-4dbe-b088-a0a25f849f9b", - "parentUUID": "75cb6e7f-1109-4685-b04d-c099401da8c8", + "uuid": "84fb7322-18e4-4a12-8b8e-7928a03b4a98", + "parentUUID": "2884b3be-0527-477f-abcf-1e5503cf2d9c", "isHook": false, "skipped": false }, @@ -10963,8 +10963,8 @@ "context": null, "code": "const date=new Date;assert.deepStrictEqual(toDate(momentTz(date)),date)", "err": {}, - "uuid": "5177eaa6-e7e6-42f0-a192-de473fd99ebe", - "parentUUID": "75cb6e7f-1109-4685-b04d-c099401da8c8", + "uuid": "78ca8de9-e3b0-4a5a-865e-487923f837fa", + "parentUUID": "2884b3be-0527-477f-abcf-1e5503cf2d9c", "isHook": false, "skipped": false }, @@ -10981,8 +10981,8 @@ "context": null, "code": "const date=new Date;assert.deepStrictEqual(toDate(dayjs(date)),date)", "err": {}, - "uuid": "9625e51f-0a7b-448a-b1ea-4371110955bc", - "parentUUID": "75cb6e7f-1109-4685-b04d-c099401da8c8", + "uuid": "073228a2-c5c5-48e2-a6f4-6e9706faf7a2", + "parentUUID": "2884b3be-0527-477f-abcf-1e5503cf2d9c", "isHook": false, "skipped": false }, @@ -10999,31 +10999,31 @@ "context": null, "code": "const date=new Date;assert.deepStrictEqual(toDate(DateTime.fromJSDate(date)),date)", "err": {}, - "uuid": "f23c8f17-f711-44ca-ba20-e68f4c047f1f", - "parentUUID": "75cb6e7f-1109-4685-b04d-c099401da8c8", + "uuid": "1cd49ab6-1f60-4c8b-962e-99ca95702073", + "parentUUID": "2884b3be-0527-477f-abcf-1e5503cf2d9c", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "f2afa273-773e-441b-998c-7e232efb2efa", - "1cca1405-6725-4b12-beb7-0fbbc431b95e", - "c0f8f9ab-2f69-4dbe-b088-a0a25f849f9b", - "5177eaa6-e7e6-42f0-a192-de473fd99ebe", - "9625e51f-0a7b-448a-b1ea-4371110955bc", - "f23c8f17-f711-44ca-ba20-e68f4c047f1f" + "8b230fed-16b6-495b-85cc-c5a77487519c", + "b82f5bb3-8818-42b4-b144-472163c459a6", + "84fb7322-18e4-4a12-8b8e-7928a03b4a98", + "78ca8de9-e3b0-4a5a-865e-487923f837fa", + "073228a2-c5c5-48e2-a6f4-6e9706faf7a2", + "1cd49ab6-1f60-4c8b-962e-99ca95702073" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 }, { - "uuid": "383fc526-080c-4a93-9a9c-fd5a9c029474", + "uuid": "f2a93e33-c339-440e-9ea4-b853250eeb2b", "title": "toDurationString()", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/tools.ts", "file": "/test/tools.ts", @@ -11034,7 +11034,7 @@ "title": "should work", "fullTitle": "ICalTools toDurationString() should work", "timedOut": false, - "duration": 1, + "duration": 0, "state": "passed", "speed": "fast", "pass": true, @@ -11043,20 +11043,20 @@ "context": null, "code": "assert.strictEqual(toDurationString(0),\"PT0S\");assert.strictEqual(toDurationString(1),\"PT1S\");assert.strictEqual(toDurationString(60),\"PT1M\");assert.strictEqual(toDurationString(3600),\"PT1H\");assert.strictEqual(toDurationString(86400),\"P1D\");assert.strictEqual(toDurationString(-3600),\"-PT1H\")", "err": {}, - "uuid": "d75c4613-9a73-4d2b-b67c-0e064ac96262", - "parentUUID": "383fc526-080c-4a93-9a9c-fd5a9c029474", + "uuid": "4d82e0df-4c1e-456b-9366-d4ab11499a60", + "parentUUID": "f2a93e33-c339-440e-9ea4-b853250eeb2b", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "d75c4613-9a73-4d2b-b67c-0e064ac96262" + "4d82e0df-4c1e-456b-9366-d4ab11499a60" ], "failures": [], "pending": [], "skipped": [], - "duration": 1, + "duration": 0, "root": false, "rootEmpty": false, "_timeout": 2000 @@ -11072,7 +11072,7 @@ "_timeout": 2000 }, { - "uuid": "071c20c1-c0bf-4a56-9fa1-9f5c88bfdc61", + "uuid": "85995fee-8812-4c2c-8175-6aa986883ca3", "title": "ical-generator Types", "fullFile": "/home/runner/work/ical-generator/ical-generator/test/types.ts", "file": "/test/types.ts", @@ -11092,8 +11092,8 @@ "context": null, "code": "assert.ok(dayJsTest,\"day.js stub should be compatible\");assert.ok(luxonTest,\"luxon stub should be compatible\");assert.ok(momentTest,\"moment stub should be compatible\");assert.ok(momentTimezoneTest,\"moment-timezone stub should be compatible\");assert.ok(rruleTest,\"rrule stub should be compatible\")", "err": {}, - "uuid": "8ca4b44d-8bba-4952-9422-7cd4aa89404f", - "parentUUID": "071c20c1-c0bf-4a56-9fa1-9f5c88bfdc61", + "uuid": "a7a563b3-d5d9-4bb1-b4cc-7b14ce7a40b8", + "parentUUID": "85995fee-8812-4c2c-8175-6aa986883ca3", "isHook": false, "skipped": false }, @@ -11110,16 +11110,16 @@ "context": null, "code": "assert.ok(attendeeJson,\"attendee json data should be compatible\");assert.ok(calendarJson,\"calendar json data should be compatible\");assert.ok(categoryJson,\"category json data should be compatible\");assert.ok(eventJson,\"event json data should be compatible\")", "err": {}, - "uuid": "8539433c-6397-4212-be22-467eea8f1b79", - "parentUUID": "071c20c1-c0bf-4a56-9fa1-9f5c88bfdc61", + "uuid": "ca0f42ec-f696-4a63-b647-38f2f7922903", + "parentUUID": "85995fee-8812-4c2c-8175-6aa986883ca3", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "8ca4b44d-8bba-4952-9422-7cd4aa89404f", - "8539433c-6397-4212-be22-467eea8f1b79" + "a7a563b3-d5d9-4bb1-b4cc-7b14ce7a40b8", + "ca0f42ec-f696-4a63-b647-38f2f7922903" ], "failures": [], "pending": [],