We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92a3e64 commit 6dd01c6Copy full SHA for 6dd01c6
1 file changed
packages/firestore/test/lite/pipeline.test.ts
@@ -3916,7 +3916,8 @@ describe.skipClassic('Firestore Pipelines', () => {
3916
timestampTruncate(field('timestamp'), 'day').as('truncDay'),
3917
timestampTruncate(field('timestamp'), 'hour').as('truncHour'),
3918
timestampTruncate(field('timestamp'), 'minute').as('truncMinute'),
3919
- timestampTruncate(field('timestamp'), 'second').as('truncSecond')
+ timestampTruncate(field('timestamp'), 'second').as('truncSecond'),
3920
+ timestampTruncate(field('timestamp'), 'isoWeek').as('truncIsoWeek')
3921
)
3922
);
3923
@@ -3926,7 +3927,8 @@ describe.skipClassic('Firestore Pipelines', () => {
3926
3927
truncDay: new Timestamp(1741392000, 0),
3928
truncHour: new Timestamp(1741435200, 0),
3929
truncMinute: new Timestamp(1741437240, 0),
- truncSecond: new Timestamp(1741437296, 0)
3930
+ truncSecond: new Timestamp(1741437296, 0),
3931
+ truncIsoWeek: new Timestamp(1740960000, 0)
3932
});
3933
}).timeout(10000);
3934
0 commit comments