Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
154 lines
5.4 KiB
JavaScript
154 lines
5.4 KiB
JavaScript
import {
|
|
findSnoozeTime,
|
|
snoozedReopenTime,
|
|
findStartOfNextWeek,
|
|
findStartOfNextMonth,
|
|
findNextDay,
|
|
setHoursToNine,
|
|
snoozedReopenTimeToTimestamp,
|
|
shortenSnoozeTime,
|
|
} from '../snoozeHelpers';
|
|
|
|
describe('#Snooze Helpers', () => {
|
|
describe('findStartOfNextWeek', () => {
|
|
it('should return first working day of next week if a date is passed', () => {
|
|
const today = new Date('06/16/2023');
|
|
const startOfNextWeek = new Date('06/19/2023');
|
|
expect(findStartOfNextWeek(today)).toEqual(startOfNextWeek);
|
|
});
|
|
it('should return first working day of next week if a date is passed', () => {
|
|
const today = new Date('06/03/2023');
|
|
const startOfNextWeek = new Date('06/05/2023');
|
|
expect(findStartOfNextWeek(today)).toEqual(startOfNextWeek);
|
|
});
|
|
});
|
|
|
|
describe('findStartOfNextMonth', () => {
|
|
it('should return first working day of next month if a valid date is passed', () => {
|
|
const today = new Date('06/21/2023');
|
|
const startOfNextMonth = new Date('07/03/2023');
|
|
expect(findStartOfNextMonth(today)).toEqual(startOfNextMonth);
|
|
});
|
|
it('should return first working day of next month if a valid date is passed', () => {
|
|
const today = new Date('02/28/2023');
|
|
const startOfNextMonth = new Date('03/06/2023');
|
|
expect(findStartOfNextMonth(today)).toEqual(startOfNextMonth);
|
|
});
|
|
});
|
|
|
|
describe('setHoursToNine', () => {
|
|
it('should return date with 9.00AM time', () => {
|
|
const nextDay = new Date('06/17/2023');
|
|
nextDay.setHours(9, 0, 0, 0);
|
|
expect(setHoursToNine(nextDay)).toEqual(nextDay);
|
|
});
|
|
it('should return date with 9.00AM time if date with 10am is passes', () => {
|
|
const nextDay = new Date('06/17/2023 10:00:00');
|
|
nextDay.setHours(9, 0, 0, 0);
|
|
expect(setHoursToNine(nextDay)).toEqual(nextDay);
|
|
});
|
|
});
|
|
|
|
describe('findSnoozeTime', () => {
|
|
it('should return nil if until_next_reply is passed', () => {
|
|
expect(findSnoozeTime('until_next_reply')).toEqual(null);
|
|
});
|
|
|
|
it('should return next hour time stamp if an_hour_from_now is passed', () => {
|
|
const nextHour = new Date();
|
|
nextHour.setHours(nextHour.getHours() + 1);
|
|
expect(findSnoozeTime('an_hour_from_now')).toBeCloseTo(
|
|
Math.floor(nextHour.getTime() / 1000)
|
|
);
|
|
});
|
|
|
|
it('should return next day 9.00AM time stamp until_tomorrow is passed', () => {
|
|
const today = new Date('06/16/2023');
|
|
const nextDay = new Date('06/17/2023');
|
|
nextDay.setHours(9, 0, 0, 0);
|
|
expect(findSnoozeTime('until_tomorrow', today)).toBeCloseTo(
|
|
nextDay.getTime() / 1000
|
|
);
|
|
});
|
|
|
|
it('should return next week monday 9.00AM time stamp if until_next_week is passed', () => {
|
|
const today = new Date('06/16/2023');
|
|
const startOfNextWeek = new Date('06/19/2023');
|
|
startOfNextWeek.setHours(9, 0, 0, 0);
|
|
expect(findSnoozeTime('until_next_week', today)).toBeCloseTo(
|
|
startOfNextWeek.getTime() / 1000
|
|
);
|
|
});
|
|
|
|
it('should return next month 9.00AM time stamp if until_next_month is passed', () => {
|
|
const today = new Date('06/21/2023');
|
|
const startOfNextMonth = new Date('07/03/2023');
|
|
startOfNextMonth.setHours(9, 0, 0, 0);
|
|
expect(findSnoozeTime('until_next_month', today)).toBeCloseTo(
|
|
startOfNextMonth.getTime() / 1000
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('snoozedReopenTime', () => {
|
|
it('should return nil if snoozedUntil is nil', () => {
|
|
expect(snoozedReopenTime(null)).toEqual(null);
|
|
});
|
|
|
|
it('should return formatted date if snoozedUntil is not nil', () => {
|
|
expect(snoozedReopenTime('2023-06-07T09:00:00.000Z')).toEqual(
|
|
'7 Jun, 9.00am'
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('findNextDay', () => {
|
|
it('should return next day', () => {
|
|
const today = new Date('06/16/2023');
|
|
const nextDay = new Date('06/17/2023');
|
|
expect(findNextDay(today)).toEqual(nextDay);
|
|
});
|
|
});
|
|
|
|
describe('snoozedReopenTimeToTimestamp', () => {
|
|
it('should return timestamp if snoozedUntil is not nil', () => {
|
|
expect(snoozedReopenTimeToTimestamp('2023-06-07T09:00:00.000Z')).toEqual(
|
|
1686128400
|
|
);
|
|
});
|
|
it('should return nil if snoozedUntil is nil', () => {
|
|
expect(snoozedReopenTimeToTimestamp(null)).toEqual(null);
|
|
});
|
|
});
|
|
|
|
describe('shortenSnoozeTime', () => {
|
|
it('should return shortened time if snoozedUntil is not nil and day is passed', () => {
|
|
expect(shortenSnoozeTime('1 day')).toEqual('1d');
|
|
});
|
|
|
|
it('should return shortened time if snoozedUntil is not nil and month is passed', () => {
|
|
expect(shortenSnoozeTime('1 month')).toEqual('1mo');
|
|
});
|
|
|
|
it('should return shortened time if snoozedUntil is not nil and year is passed', () => {
|
|
expect(shortenSnoozeTime('1 year')).toEqual('1y');
|
|
});
|
|
|
|
it('should return shortened time if snoozedUntil is not nil and hour is passed', () => {
|
|
expect(shortenSnoozeTime('1 hour')).toEqual('1h');
|
|
});
|
|
|
|
it('should return shortened time if snoozedUntil is not nil and minutes is passed', () => {
|
|
expect(shortenSnoozeTime('1 minutes')).toEqual('1m');
|
|
});
|
|
|
|
it('should return shortened time if snoozedUntil is not nil and in is passed', () => {
|
|
expect(shortenSnoozeTime('in 1 hour')).toEqual('1h');
|
|
});
|
|
|
|
it('should return nil if snoozedUntil is nil', () => {
|
|
expect(shortenSnoozeTime(null)).toEqual(null);
|
|
});
|
|
});
|
|
});
|