Skip to content

Commit 2200b5f

Browse files
committed
remove it.only
1 parent ab995da commit 2200b5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
import { apiDescribe, withTestCollection } from '../util/helpers';
2525

2626
apiDescribe('Aggregation COUNT query:', (persistence: boolean) => {
27-
it.only('empty collection count equals to 0', () => {
27+
it('empty collection count equals to 0', () => {
2828
const testDocs = {};
2929
return withTestCollection(persistence, testDocs, collection => {
3030
const countQuery_ = countQuery(query(collection));
@@ -34,7 +34,7 @@ apiDescribe('Aggregation COUNT query:', (persistence: boolean) => {
3434
});
3535
});
3636

37-
it.only('test collection count equals to 6', () => {
37+
it('test collection count equals to 6', () => {
3838
const testDocs = {
3939
a: { k: 'a' },
4040
b: { k: 'b' },

0 commit comments

Comments
 (0)