Skip to content

Commit

Permalink
fix test skip (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
ermalkaleci authored Mar 9, 2023
1 parent c5ef1b6 commit 6ac32dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/e2e/src/build-block.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe.each([
await teardownAll()
})

it.skipIf(!process.env.RUN_ALL_TESTS)('build blocks', async () => {
it.skipIf(process.env.RUN_ALL_TESTS !== 'true')('build blocks', async () => {
const { chain, ws, teardown } = await setup()
const blockNumber = chain.head.number
await ws.send('dev_newBlock', [{ count: 2 }])
Expand Down

0 comments on commit 6ac32dc

Please sign in to comment.