-
Notifications
You must be signed in to change notification settings - Fork 2
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
Basic module tests #505
Basic module tests #505
Conversation
package.json
Outdated
@@ -18,7 +18,7 @@ | |||
"build": "yarn workspaces run build", | |||
"presetup": "yarn clean", | |||
"setup": "tsc --build", | |||
"test": "export stage=DEV; yarn server test && yarn shared test", | |||
"test": "export stage=DEV; yarn server test && yarn shared test && yarn modules test", |
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.
Now that we're running tests in all of the workspaces, we can do
"test": "export stage=DEV; yarn workspaces run test",
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.
nice!
{ "runtime": "automatic", "importSource": "@emotion/react" } | ||
], | ||
{ "runtime": "automatic", "importSource": "@emotion/react" } | ||
], |
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.
looks like this is just a formatting change?
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.
👍
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.
Nice one - looks good 👍
Based on this PR: #384 by @tompretty
But I started a new branch because too much has changed since the refactor.
This PR includes a very basic rendering test for the epic.
We can start adding more tests soon