File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
packages/firestore/test/unit/util Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 16
16
*/
17
17
import { expect } from 'chai' ;
18
18
import { Bundle , toReadableStream } from '../../../src/util/bundle' ;
19
+ import { isNode } from '../../util/test_platform' ;
19
20
20
21
const encoder = new TextEncoder ( ) ;
21
22
@@ -32,7 +33,8 @@ function lengthPrefixedString(o: {}): string {
32
33
return `${ l } ${ str } ` ;
33
34
}
34
35
35
- describe ( 'readableStreamFromString()' , ( ) => {
36
+ // eslint-disable-next-line no-restricted-properties
37
+ ( isNode ( ) ? describe . skip : describe ) ( 'readableStreamFromString()' , ( ) => {
36
38
it ( 'returns stepping readable stream' , async ( ) => {
37
39
const encoder = new TextEncoder ( ) ;
38
40
const s = readableStreamFromString ( '0123456789' , 4 ) ;
@@ -56,7 +58,8 @@ describe('readableStreamFromString()', () => {
56
58
} ) ;
57
59
} ) ;
58
60
59
- describe . only ( 'Bundle ' , ( ) => {
61
+ // eslint-disable-next-line no-restricted-properties
62
+ ( isNode ( ) ? describe . skip : describe ) ( 'Bundle ' , ( ) => {
60
63
genericBundleReadingTests ( 1 ) ;
61
64
genericBundleReadingTests ( 4 ) ;
62
65
genericBundleReadingTests ( 64 ) ;
You can’t perform that action at this time.
0 commit comments