DigitalConsumer.FixMyGlass/playwright-tests/impl/utils/DateUtils.ts
maguire-arman 404dda6556 Adds Playwright test framework for FMG
Initial commit of the Playwright test framework, including:
- Configuration files for Playwright, Docker, and Sauce Labs
- Test case structure and page object models
- CI/CD pipeline configuration
- Utilities and business logic implementations

This framework will be used for end-to-end testing of the FMG application.
2025-04-07 15:40:31 -04:00

26 lines
No EOL
668 B
TypeScript

export function formatDate(date: Date) {
const isoString = date.toISOString();
return isoString.slice(0, 10);
}
export function formatTime(date: Date) {
return date.toLocaleTimeString('en-US', {
hour: 'numeric',
minute: '2-digit',
hour12: true
});
}
export function getNextWeekday(date?: Date) {
if (!date) {
date = new Date();
date.setHours(8,0,0,0);
}
const dayOfWeek = date.getDay();
const daysToAdd = dayOfWeek === 5? 3: 1; // Add 3 days if today is friday. Otherwise add 1.
const nextDay = new Date(date);
nextDay.setDate(date.getDate() + daysToAdd);
return nextDay;
}