Upgrading to zora 5 #99
mindplay-dk
started this conversation in
General
Replies: 1 comment
-
Good point. zoraSo far, I would say:
ptaPta (the node runner) is able to run any zora program and does not require a default export anymore: // before
export default (t) => {
t.ok(true
}
// after
import {test} from 'zora';
test('some spec', ({ok}) => {
ok(true)
}) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there an upgrade guide for version 5.0 somewhere?
I'm curious what to expect in terms of breaking changes.
It would be helpful to mention this in the README - or consider adding an
UPGRADING.md
to the project root.Beta Was this translation helpful? Give feedback.
All reactions