Skip to content

Commit bb8fc27

Browse files
committed
fix tests and enable only pipeline tests
1 parent 7532899 commit bb8fc27

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/firestore/test/integration/api/pipeline.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ setLogLevel('debug');
147147
const testUnsupportedFeatures: boolean | 'only' = false;
148148
const timestampDeltaMS = 1000;
149149

150-
apiDescribe('Pipelines', persistence => {
150+
apiDescribe.only('Pipelines', persistence => {
151151
addEqualityMatcher();
152152

153153
let firestore: Firestore;
@@ -2371,7 +2371,7 @@ apiDescribe('Pipelines', persistence => {
23712371
.collection(randomCol.path)
23722372
.sort(field('rating').descending())
23732373
.limit(1)
2374-
.addFields(
2374+
.select(
23752375
map({
23762376
foo: 'bar'
23772377
}).as('metadata')

packages/firestore/test/integration/api/query_to_pipeline.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const testUnsupportedFeatures: boolean | 'only' = false;
5959

6060
// This is the Query integration tests from the lite API (no cache support)
6161
// with some additional test cases added for more complete coverage.
62-
apiDescribe('Query to Pipeline', persistence => {
62+
apiDescribe.only('Query to Pipeline', persistence => {
6363
addEqualityMatcher();
6464

6565
function verifyResults(

0 commit comments

Comments
 (0)