-
Notifications
You must be signed in to change notification settings - Fork 26
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
Integration test for examples #55
Conversation
@@ -0,0 +1,134 @@ | |||
export const EXAMPLE_SWAY_CONTRACT_SRC20 = `contract; | |||
|
|||
use ownership; |
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.
@sdankel can we include the entire sway libs as "libs" instead of just the ownership module?
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.
libs
would have to be the name of the package, with all of the modules inside that package. Currently each module in sway-libs is a separate package, so they have to be imported separately. cargo works the same way.
Closing and adding to #52 instead. |
Integration tests for #52