Skip to content

Commit 2c219e5

Browse files
committed
Attempting to mitigate failures caused by browser disconnect timout
1 parent f7067e2 commit 2c219e5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

config/karma.base.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ const config = {
5353

5454
// Doing 65 seconds to allow for the 20 second firestore tests
5555
browserNoActivityTimeout: 65000,
56+
browserDisconnectTimeout: 65000,
5657

5758
// Preprocess matching files before serving them to the browser.
5859
// Available preprocessors:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2433,7 +2433,7 @@ apiDescribe('Database', persistence => {
24332433
});
24342434
});
24352435

2436-
describe.only('Sort unicode strings', () => {
2436+
describe('Sort unicode strings', () => {
24372437
const expectedDocs = [
24382438
'b',
24392439
'a',

packages/firestore/test/unit/util/misc.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ describe('FieldMask', () => {
5454
});
5555
});
5656

57-
describe.only('CompareUtf8Strings', () => {
57+
describe('CompareUtf8Strings', () => {
5858
it('compareUtf8Strings should return correct results', () => {
5959
const errors = [];
6060
const seed = Math.floor(Math.random() * Number.MAX_SAFE_INTEGER);

0 commit comments

Comments
 (0)