Skip to content

Commit 95f3874

Browse files
Ordering imports
1 parent 49ae902 commit 95f3874

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ import { expect } from 'chai';
1818
import * as firestore from 'firestore';
1919

2020
import * as testHelpers from '../../util/helpers';
21-
import firebase from '../util/firebase_export';
2221
import * as integrationHelpers from '../util/helpers';
23-
import { PublicFieldValue } from '../../../src/api/field_value';
2422
import { FieldPath } from '../../../src/api/field_path';
23+
import { PublicFieldValue } from '../../../src/api/field_value';
2524

2625
const asyncIt = testHelpers.asyncIt;
2726
const apiDescribe = integrationHelpers.apiDescribe;

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,14 @@ import * as firestore from 'firestore';
1919

2020
import { Deferred } from '../../../src/util/promise';
2121
import { asyncIt } from '../../util/helpers';
22-
import firebase from '../util/firebase_export';
2322
import {
2423
apiDescribe,
2524
withTestCollection,
2625
withTestDb,
2726
withTestDoc
2827
} from '../util/helpers';
29-
import { PublicFieldValue } from '../../../src/api/field_value';
3028
import { FieldPath } from '../../../src/api/field_path';
29+
import { PublicFieldValue } from '../../../src/api/field_value';
3130

3231
apiDescribe('Database', persistence => {
3332
asyncIt('can set a document', () => {

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import { expect } from 'chai';
1818
import * as firestore from 'firestore';
1919

2020
import * as testHelpers from '../../util/helpers';
21-
import firebase from '../util/firebase_export';
2221
import { apiDescribe, withTestDoc } from '../util/helpers';
2322
import { PublicFieldValue } from '../../../src/api/field_value';
2423

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import { expect } from 'chai';
1818
import * as firestore from 'firestore';
1919

2020
import { asyncIt } from '../../util/helpers';
21-
import firebase from '../util/firebase_export';
2221
import {
2322
DEFAULT_PROJECT_ID,
2423
ALT_PROJECT_ID,
@@ -27,8 +26,8 @@ import {
2726
withTestCollection,
2827
withTestDb
2928
} from '../util/helpers';
30-
import { PublicFieldValue } from '../../../src/api/field_value';
3129
import { FieldPath } from '../../../src/api/field_path';
30+
import { PublicFieldValue } from '../../../src/api/field_value';
3231

3332
// We're using 'as any' to pass invalid values to APIs for testing purposes.
3433
// tslint:disable:no-any

0 commit comments

Comments
 (0)