Skip to content

Commit 122c669

Browse files
committed
chore: run prettier
1 parent 2275648 commit 122c669

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/transforms.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ test('abort signal', async () => {
103103
// })
104104

105105
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' })
107107
expect(res1).toMatchInlineSnapshot(`
108108
Object {
109109
"count": undefined,
@@ -151,7 +151,10 @@ test('explain with json/text format', async () => {
151151
})
152152

153153
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' })
155158
expect(res).toMatchInlineSnapshot(`
156159
Object {
157160
"count": undefined,

0 commit comments

Comments
 (0)