Skip to content

Commit

Permalink
add "__id" to the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
milaGGL committed Dec 16, 2024
1 parent e49959d commit a338b77
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dev/system-test/firestore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3925,6 +3925,7 @@ describe('Query class', () => {
batch.set(randomCol.doc('__id-2__'), {a: 1});
batch.set(randomCol.doc('__id1_'), {a: 1});
batch.set(randomCol.doc('_id1__'), {a: 1});
batch.set(randomCol.doc('__id'), {a: 1});
// largest long number
batch.set(randomCol.doc('__id9223372036854775807__'), {a: 1});
batch.set(randomCol.doc('__id9223372036854775806__'), {a: 1});
Expand All @@ -3946,6 +3947,7 @@ describe('Query class', () => {
'7',
'A',
'Aa',
'__id',
'__id1_',
'_id1__',
'a',
Expand Down Expand Up @@ -3979,6 +3981,7 @@ describe('Query class', () => {
batch.set(randomCol.doc('__id-2__'), {a: 1});
batch.set(randomCol.doc('__id1_'), {a: 1});
batch.set(randomCol.doc('_id1__'), {a: 1});
batch.set(randomCol.doc('__id'), {a: 1});
// largest long number
batch.set(randomCol.doc('__id9223372036854775807__'), {a: 1});
batch.set(randomCol.doc('__id9223372036854775806__'), {a: 1});
Expand Down

0 comments on commit a338b77

Please sign in to comment.