Skip to content

Commit ab8c4f6

Browse files
nickwesselmanclaude
andcommitted
Fix prettier formatting, regenerate manifests and snapshots
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0bbbd36 commit ab8c4f6

3 files changed

Lines changed: 5797 additions & 5365 deletions

File tree

packages/app/src/cli/commands/store/execute.test.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ describe('store execute command', () => {
1111
vi.mocked(loadQuery).mockResolvedValue('query { shop { name } }')
1212
vi.mocked(storeExecuteOperation).mockResolvedValue()
1313

14-
await expect(
15-
StoreExecute.run(['--query', 'query { shop { name } }'], import.meta.url),
16-
).rejects.toThrow()
14+
await expect(StoreExecute.run(['--query', 'query { shop { name } }'], import.meta.url)).rejects.toThrow()
1715

1816
expect(storeExecuteOperation).not.toHaveBeenCalled()
1917
})
@@ -27,9 +25,7 @@ describe('store execute command', () => {
2725
import.meta.url,
2826
)
2927

30-
expect(loadQuery).toHaveBeenCalledWith(
31-
expect.objectContaining({query: 'query { shop { name } }'}),
32-
)
28+
expect(loadQuery).toHaveBeenCalledWith(expect.objectContaining({query: 'query { shop { name } }'}))
3329
expect(storeExecuteOperation).toHaveBeenCalledWith(
3430
expect.objectContaining({
3531
storeFqdn: 'test-store.myshopify.com',

0 commit comments

Comments
 (0)