File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
graphiql-toolkit/src/create-fetcher Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -79,10 +79,7 @@ export const createWebsocketsFetcherFromUrl = (
79
79
} ;
80
80
81
81
// TODO: defaults?
82
- wsClient = createClient ( {
83
- url,
84
- connectionParams,
85
- } ) ;
82
+ wsClient = createClient ( { url, connectionParams } ) ;
86
83
return createWebsocketsFetcherFromClient ( wsClient ) ;
87
84
} catch ( err ) {
88
85
if ( errorHasCode ( err ) && err . code === 'MODULE_NOT_FOUND' ) {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ describe('monaco-editor', () => {
15
15
// expect(lines[1]).toMatch(' building for production...');
16
16
// expect(lines[2]).toBe('transforming...');
17
17
expect ( lines [ 3 ] ) . toMatch (
18
- `✓ ${ parseInt ( version , 10 ) > 16 ? 856 : 843 } modules transformed.` ,
18
+ `✓ ${ parseInt ( version , 10 ) > 16 ? 857 : 843 } modules transformed.` ,
19
19
) ;
20
20
// expect(lines[4]).toBe('rendering chunks...');
21
21
// expect(lines[5]).toBe('computing gzip size...');
You can’t perform that action at this time.
0 commit comments