Commit 27ba5fa9 authored by OptimismBot's avatar OptimismBot Committed by GitHub

Merge pull request #5516 from ethereum-optimism/willc/flaky-atst

fix(ci): Disable flaky atst test
parents f506d5ee f22b815a
......@@ -561,11 +561,11 @@ jobs:
- run:
name: build
command: yarn build
working_directory: packages/atst
working_directory: packages/sdk
- run:
name: lint
command: yarn lint:check
working_directory: packages/atst
working_directory: packages/sdk
- run:
name: make sure anvil l1 is up
command: npx wait-on tcp:8545 && cast block-number --rpc-url http://localhost:8545
......@@ -697,6 +697,8 @@ jobs:
command: yarn test
no_output_timeout: 5m
working_directory: packages/atst
environment:
CI: true
go-lint:
......
......@@ -4,7 +4,9 @@ import { describe, it, expect } from 'vitest'
import { getEvents } from './getEvents'
describe(getEvents.name, () => {
it('should get events on goerli', async () => {
// sinc this test is using https://goerli.optimism.io it is currently skipped
// we should start anvil for goerli too and then we can remove this skip
it.skipIf(process.env.CI)('should get events on goerli', async () => {
const key = 'animalfarm.school.attended'
const creator = '0xBCf86Fd70a0183433763ab0c14E7a760194f3a9F'
expect(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment