-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Awesome Japa #31
Comments
This comment was marked as off-topic.
This comment was marked as off-topic.
I'm not sharing a link, but this issue is the best place I've found for what I want to share. The idea of having a testing library that focuses solely on tests without bothering about transpilation/bundling appealed to me a lot. The setup can be seen here: https://github.com/cahnory/pnpm-monorepo/pull/8/files/7a152e17f86f88f142bbe4108adc0d18bb21fd3d In summary, once Japa is installed along with vite and vite-node libraries, the Japa configuration looks like this: // bin/test.js
import { expect } from "@japa/expect";
import { configure, processCLIArgs, run } from "@japa/runner";
processCLIArgs(process.argv.splice(2));
configure({
files: ["**/*.spec.ts?(x)"],
importer: (filePath) => import(filePath.toString()),
plugins: [expect()],
});
await run(); And to run the tests, you need to execute this command: vite-node bin/test.js |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I am collecting links to articles, packages, videos, etc. related to Japa. If you have created anything for Japa, then comment on this issue. I will occasionally pick links from the comments and update the main issue
The text was updated successfully, but these errors were encountered: