-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed as not planned
Labels
Description
Describe the bug
#847 is closed, but the issue (or something similar) appears to still be present in Vitest 0.26.3. Have one directory in a repo where tests run fine. Have another directory where even basic pseudo tests won't run:
import { describe, expect, it } from 'vitest';
describe('A nascent test',()=>{
it('Really basic test',()=>{
expect(true).toBe(true);
})
});
The error I get is:
Error: No test suite found in file E:/Git/Kurohyou_studios/Roll20-Snippets/test_sheet/source/assets/js/__tests__/gen.test.js
The actual test I'm trying to run here was working a week ago, so not sure what has changed.
Reproduction
Repro info above.
System Info
Vitest 0.26.3
Windows 10.0.19045 Build 19045Used Package Manager
npm
Validations
- Follow our Code of Conduct
- Read the Contributing Guidelines.
- Read the docs.
- Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
- Check that this is a concrete bug. For Q&A open a GitHub Discussion or join our Discord Chat Server.
- The provided reproduction is a minimal reproducible example of the bug.
Reactions are currently unavailable