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
The bug that was raised for #800 has this testFiles glob:
testFiles
"testFiles": [ "src/**/*.test.{ts,js}"],
The correct directory is test and not src.
test
src
This is further complicated by the fact that the glob "testFiles": [ "src/**/*.test.{ts,js}"], actually found a match but it was a jest test.
jest
import { waitFor } from './helpers'; describe('waitFor', () => { it('should wait for true', async () => { const fn = jest.fn().mockReturnValue(true); // etc.
I definitely do not think this is a one-off and we should fail early if bigtest:
Descriptive console warnings should highlight what is wrong
The text was updated successfully, but these errors were encountered:
Is this related to #635?
Sorry, something went wrong.
No branches or pull requests
The bug that was raised for #800 has this
testFiles
glob:The correct directory is
test
and notsrc
.This is further complicated by the fact that the glob
"testFiles": [ "src/**/*.test.{ts,js}"],
actually found a match but it was ajest
test.I definitely do not think this is a one-off and we should fail early if bigtest:
Descriptive console warnings should highlight what is wrong
The text was updated successfully, but these errors were encountered: