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
Having 2 test files test/foo.test.js test/sub/foo.test.js
each containing 1 test
2 tests are executed
1 test is executed
git clone https://github.com/daKmoR/karma-webpack-issue-400.git cd karma-webpack-issue-400 yarn install yarn test
this will execute 1 test even though it should be 2.
Workaround: rename test/sub/foo.test.js to test/sub/foo2.test.js and it works as expected
test/sub/foo.test.js
test/sub/foo2.test.js
The text was updated successfully, but these errors were encountered:
fix: allow for same filenames to be added (#401)
80ce2d8
Fixes #400
No branches or pull requests
Having 2 test files
test/foo.test.js
test/sub/foo.test.js
each containing 1 test
Expected Behavior
2 tests are executed
Actual Behavior
1 test is executed
How Do We Reproduce?
this will execute 1 test even though it should be 2.
Workaround: rename
test/sub/foo.test.js
totest/sub/foo2.test.js
and it works as expectedThe text was updated successfully, but these errors were encountered: