Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
27ba5fa9
Unverified
Commit
27ba5fa9
authored
Apr 21, 2023
by
OptimismBot
Committed by
GitHub
Apr 21, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5516 from ethereum-optimism/willc/flaky-atst
fix(ci): Disable flaky atst test
parents
f506d5ee
f22b815a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
config.yml
.circleci/config.yml
+4
-2
getEvents.spec.ts
packages/atst/src/lib/getEvents.spec.ts
+3
-1
No files found.
.circleci/config.yml
View file @
27ba5fa9
...
...
@@ -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
:
...
...
packages/atst/src/lib/getEvents.spec.ts
View file @
27ba5fa9
...
...
@@ -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
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment