Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions handwritten/firestore/dev/conformance/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,6 @@ function getHandler(spec: ConformanceProto) {
}

function runTest(spec: ConformanceProto) {
console.log(`Running Spec:\n${JSON.stringify(spec, null, 2)}\n`);

const updateTest = (spec: ConformanceProto) => {
const overrides = {commit: commitHandler(spec)};
return createInstance(overrides).then(() => {
Expand Down
4 changes: 2 additions & 2 deletions handwritten/firestore/dev/system-test/firestore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1946,8 +1946,8 @@ describe('runs query on a large collection', () => {
let randomCol: CollectionReference;

beforeEach(async () => {
firestore = new Firestore({});
randomCol = getTestRoot(firestore);
randomCol = getTestRoot();
firestore = randomCol.firestore;

const promises: Array<Promise<DocumentReference<DocumentData>>> = [];
for (let i = 0; i < 1000; i++) {
Expand Down
Loading