-
Notifications
You must be signed in to change notification settings - Fork 9
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
tests: vitest #849
tests: vitest #849
Conversation
exports[`export multiple Markdown renderers > allows complex compact headings 1`] = `undefined`; | ||
|
||
exports[`export multiple Markdown renderers > renders HTML 1`] = `undefined`; | ||
|
||
exports[`export multiple Markdown renderers > renders MD 1`] = ` | ||
"# Hello World | ||
" | ||
`; | ||
|
||
exports[`export multiple Markdown renderers > renders custom React components 1`] = `[Function]`; | ||
|
||
exports[`export multiple Markdown renderers > renders hAST 1`] = `undefined`; |
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.
Something is wrong with these tests. Not sure where the snapshots were????
you should also update this Line 2 in f289c1b
|
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.
noice!
🧰 Changes
Ports our test suite to
vitest
!This mostly just adds the configuration and skips any tests that aren't passing already. I also deleted any magic block tests! 😃
It does not convert the browser tests to
vitest
. I'd like to get them all passing before we do that???🧬 QA & Testing