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
In angular, you can write a test like this:
describe('Component', () => { it('should do something after 60 seconds', fakeAsync(() => { tick(1000 * 60); expect(true).toBe(true); })); });
However, this test is not recognized by the parser. Docs: https://angular.io/api/core/testing/fakeAsync
The text was updated successfully, but these errors were encountered:
I forked and fixed this locally https://github.com/haus20xx/neotest-jest I haven't synced it lately but you could replicate the change I made here main...haus20xx:neotest-jest:main
Sorry, something went wrong.
please merge this, otherwise all "fakeAsync" wrapped tests are ignored
I have applied the fixes from @haus20xx in a PR
Successfully merging a pull request may close this issue.
In angular, you can write a test like this:
However, this test is not recognized by the parser.
Docs: https://angular.io/api/core/testing/fakeAsync
The text was updated successfully, but these errors were encountered: