We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
First of all, thanks Nathan for Daine!
As a TDD beginner I would like to use Dainte as I use Enzyme with Jest.
Any way to do it?
If I tried to insert inside a
// inside App.test.js import App from "./App"; import {render} from "dainte"; test("renders learn svelte link", () => { const { app } = await mount('./App.svelte' ) });
Appear the next error:
The text was updated successfully, but these errors were encountered:
I guess you figured that out already, but you should use the full path to your svelte component
// inside App.test.js import { mount } from "dainte"; test("renders learn svelte link", () => { const { app } = await mount('./src/App.svelte' ) });
Sorry, something went wrong.
No branches or pull requests
First of all, thanks Nathan for Daine!
As a TDD beginner I would like to use Dainte as I use Enzyme with Jest.
Any way to do it?
If I tried to insert inside a
Appear the next error:
The text was updated successfully, but these errors were encountered: