-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix e2e test setup #545
Fix e2e test setup #545
Conversation
d864f97
to
674c6ec
Compare
10dfddf
to
f30475c
Compare
@@ -129,14 +129,13 @@ function sanityCheck( | |||
modulePath, | |||
artifact | |||
) { | |||
const { environments, contractPath } = artifact | |||
const { appName, registry, network } = environments[0] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was failing here because environments
is not an array.
That being said environments['default']
does not feel alright either.
}) | ||
|
||
test('should publish an aragon app directory successfully', async t => { | ||
test.skip('should publish an aragon app directory successfully', async t => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've marked it to be skipped because, even though it passes, it makes aragon run
fail: Cannot find transaction pathing
.
Not sure if it's possible to resolve this conflict, but perhaps we shouldn't test deploying to the local devchain since aragon run
is already doing it. Can we try deploying to rinkeby instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried to use Rinkeby and is working fine but I'm also having problems with Cannot find transaction pathing
on some node versions. I'll keep the .skip
and merge it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I see, it's the same issue as with local host:
It cannot find the transaction path when another deploy is happening at the same time.
Any thoughts @sohkai ?
bc23c77
to
2da5bbc
Compare
LGTM! |
🦅 Pull Request
Update to fix the problem of two test trying to spawn
aragon devchain