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
94d8f5c6
Commit
94d8f5c6
authored
Apr 21, 2023
by
Will Cory
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(ci): Disable flaky atst test
parent
2c160494
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 @
94d8f5c6
...
@@ -561,11 +561,11 @@ jobs:
...
@@ -561,11 +561,11 @@ jobs:
-
run
:
-
run
:
name
:
build
name
:
build
command
:
yarn build
command
:
yarn build
working_directory
:
packages/
atst
working_directory
:
packages/
sdk
-
run
:
-
run
:
name
:
lint
name
:
lint
command
:
yarn lint:check
command
:
yarn lint:check
working_directory
:
packages/
atst
working_directory
:
packages/
sdk
-
run
:
-
run
:
name
:
make sure anvil l1 is up
name
:
make sure anvil l1 is up
command
:
npx wait-on tcp:8545 && cast block-number --rpc-url http://localhost:8545
command
:
npx wait-on tcp:8545 && cast block-number --rpc-url http://localhost:8545
...
@@ -697,6 +697,8 @@ jobs:
...
@@ -697,6 +697,8 @@ jobs:
command
:
yarn test
command
:
yarn test
no_output_timeout
:
5m
no_output_timeout
:
5m
working_directory
:
packages/atst
working_directory
:
packages/atst
environment
:
CI
:
true
go-lint
:
go-lint
:
...
...
packages/atst/src/lib/getEvents.spec.ts
View file @
94d8f5c6
...
@@ -4,7 +4,9 @@ import { describe, it, expect } from 'vitest'
...
@@ -4,7 +4,9 @@ import { describe, it, expect } from 'vitest'
import
{
getEvents
}
from
'
./getEvents
'
import
{
getEvents
}
from
'
./getEvents
'
describe
(
getEvents
.
name
,
()
=>
{
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
key
=
'
animalfarm.school.attended
'
const
creator
=
'
0xBCf86Fd70a0183433763ab0c14E7a760194f3a9F
'
const
creator
=
'
0xBCf86Fd70a0183433763ab0c14E7a760194f3a9F
'
expect
(
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