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
Before 1.0.2 it was possible to test all packages by simply run:
meteor test-packages packages/*
With 1.0.2 one have to add a dummy test or to select all package with tests to prevent.
While trying to test package `packages/xxx`: error: Package has no tests
The text was updated successfully, but these errors were encountered:
It sufficient to add empty onTest block.
Package.onTest(function (api) {});
Sorry, something went wrong.
Yes, I think you're right.
00a7da3
Fix test-packages * if some packages lack tests
test-packages *
301f73e
Fixes #3334. This was an intentional but poorly thought through change in 1.0.2 (1a9536b).
No branches or pull requests
Before 1.0.2 it was possible to test all packages by simply run:
With 1.0.2 one have to add a dummy test or to select all package with tests to prevent.
The text was updated successfully, but these errors were encountered: