-
Notifications
You must be signed in to change notification settings - Fork 115
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
Update MorpheusVM Tutorial #1706
Conversation
Note: wait for |
Updated CLI version used in doc; you can now use the |
the following: | ||
|
||
```go | ||
timeoutCtx, timeoutCtxFnc := context.WithDeadline(context.Background(), time.Now().Add(2*time.Second)) |
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.
Can we update to use 30s?
|
||
We now move onto our procedural tests. | ||
|
||
## Implementing our Procedural Tests |
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.
Can we rename from procedural (term used to differentiate from the old gross generator style) to just calling them tests?
I think using the term procedural will just confuse people.
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.
What do you think about the following syntax:
- "tests": refers to all tests we go over
- "workload tests": self explanatory
- "integration tests": the procedural tests themselves
This way, there's a clear difference between the two types of tests we're implementing
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.
How about "workload tests" to define the tests that we run against both integration and e2e environments?
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.
👍
This PR updates the MorpheusVM tutorial to reflect the latest changes.
In addition, this PR updates the tutorial to use procedural integration tests and the HyperSDK CLI