Skip to content

Commit f60d60e

Browse files
Don't include in browser build
This addresses an OOM in Saucelabs, since tries to make grpc-js work in IE11. We should not include any tests that depend on GRPC-JS
1 parent 537350e commit f60d60e

File tree

5 files changed

+1489
-1483
lines changed

5 files changed

+1489
-1483
lines changed

packages/firestore/test/unit/bootstrap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ import '../../src/platform_browser/browser_init';
2929
const testsContext = (require as any).context('.', true, /.test$/);
3030
const browserTests = testsContext
3131
.keys()
32-
.filter((file: string) => file.indexOf('/node/') < 0);
32+
.filter((file: string) => !file.match(/([\/.])node([\/.])/));
3333
browserTests.forEach(testsContext);
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import {serializerTest} from "./serializer.helper";
2+
3+
serializerTest();

0 commit comments

Comments
 (0)