File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ test('abort signal', async () => {
103
103
// })
104
104
105
105
test ( 'explain with json/text format' , async ( ) => {
106
- const res1 = await postgrest . from ( 'users' ) . select ( ) . explain ( { format : 'json' } )
106
+ const res1 = await postgrest . from ( 'users' ) . select ( ) . explain ( { format : 'json' } )
107
107
expect ( res1 ) . toMatchInlineSnapshot ( `
108
108
Object {
109
109
"count": undefined,
@@ -151,7 +151,10 @@ test('explain with json/text format', async () => {
151
151
} )
152
152
153
153
test ( 'explain with options' , async ( ) => {
154
- const res = await postgrest . from ( 'users' ) . select ( ) . explain ( { verbose : true , settings : true , format : 'json' } )
154
+ const res = await postgrest
155
+ . from ( 'users' )
156
+ . select ( )
157
+ . explain ( { verbose : true , settings : true , format : 'json' } )
155
158
expect ( res ) . toMatchInlineSnapshot ( `
156
159
Object {
157
160
"count": undefined,
You can’t perform that action at this time.
0 commit comments