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
I read through all comments of #47 but still can't make it work.
npx vitest
vitest.config.mts
import { defineConfig } from "vitest/config"; export default defineConfig({ test: { globals: true, include: ["api/**/*.spec.ts"], reporters: ["basic", "junit"], outputFile: { junit: "junit-report/api-report.xml" }, globalSetup: ["./api/getToken.ts"], }, });
.vscode/settings.json
{ "vitest.commandLine": "npx vitest" }
vitest - 1.3.1 vitest extension - v0.4.0 node - 18 vscode - 1.87 System: OS: macOS 14.3.1 CPU: (8) arm64 Apple M2 Memory: 201.14 MB / 16.00 GB Shell: 5.9 - /bin/zsh Binaries: Node: 18.19.1 - ~/.volta/tools/image/node/18.19.1/bin/node npm: 10.4.0 - ~/.volta/tools/image/npm/10.4.0/bin/npm pnpm: 8.15.1 - ~/Library/pnpm/pnpm bun: 1.0.4 - ~/.bun/bin/bun Browsers: Brave Browser: 120.1.61.114 Chrome: 122.0.6261.94 Edge: 122.0.2365.63 Safari: 17.3.1 npmPackages: vitest: ^1.3.1 => 1.3.1
npm
The text was updated successfully, but these errors were encountered:
I'm guessing that "dynamic" test title such as describe.concurrent(`POST ${uri}`, ...) is not working currently.
describe.concurrent(`POST ${uri}`, ...)
Sorry, something went wrong.
Possibly it could be replaced with wild card regexp. It seems to be stored raw expression literal internally.
This should be fixed in #253 as it uses resolved test names
This is now fixed in pre-release 0.5.0 and higher. Note that the extension now requires Vitest 1.4.0 or higher.
No branches or pull requests
Describe the bug
I read through all comments of #47 but still can't make it work.
npx vitest
workReproduction
vitest.config.mts
.vscode/settings.json
System Info
Used Package Manager
npm
Validations
The text was updated successfully, but these errors were encountered: