24 lines
561 B
TypeScript
24 lines
561 B
TypeScript
|
|
/**
|
||
|
|
* Date formatting helpers for e2e tests.
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Format date as YYYY-MM-DD in local timezone.
|
||
|
|
*/
|
||
|
|
export function formatDateLocal(d: Date): string {
|
||
|
|
const year = d.getFullYear();
|
||
|
|
const month = String(d.getMonth() + 1).padStart(2, "0");
|
||
|
|
const day = String(d.getDate()).padStart(2, "0");
|
||
|
|
return `${year}-${month}-${day}`;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get tomorrow's date string in YYYY-MM-DD format.
|
||
|
|
*/
|
||
|
|
export function getTomorrowDateStr(): string {
|
||
|
|
const tomorrow = new Date();
|
||
|
|
tomorrow.setDate(tomorrow.getDate() + 1);
|
||
|
|
return formatDateLocal(tomorrow);
|
||
|
|
}
|
||
|
|
|