Skip to content

Commit

Permalink
chore: add missing await
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm committed Nov 9, 2024
1 parent 4ede986 commit 9cbc4df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/plugins/foundry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ test('validates without project', async () => {
const spy = vi.spyOn(process, 'cwd')
spy.mockImplementation(() => dir)

expect(foundry().validate?.()).resolves.toBeUndefined()
await expect(foundry().validate?.()).resolves.toBeUndefined()
})

test('contracts', () => {
Expand Down

0 comments on commit 9cbc4df

Please sign in to comment.