fmt(js): npm run fix on merge (#82000)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
hermes-seaeye[bot]
2026-08-08 20:29:52 +00:00
committed by GitHub
parent a726a4aee6
commit 3da72f1fd1

View File

@@ -137,6 +137,7 @@ describe('sessionBucketLabel', () => {
if (monthBucket.kind !== 'month') {
throw new Error(`expected month bucket, got ${monthBucket.kind}`)
}
expect(sessionBucketLabel(monthBucket, labels)).toBe(fmtMonth.format(monthBucket.at))
const monthYearBucket = calendarBucket(secondsAt(2025, 11, 3), THU_NOON, 1)
@@ -144,6 +145,7 @@ describe('sessionBucketLabel', () => {
if (monthYearBucket.kind !== 'monthYear') {
throw new Error(`expected monthYear bucket, got ${monthYearBucket.kind}`)
}
expect(sessionBucketLabel(monthYearBucket, labels)).toBe(fmtMonthYear.format(monthYearBucket.at))
})
})