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
vitest-dev/vitest#1241
next.js-tpl/vite.config.ts
Line 57 in 2e11f53
/// <reference types="vitest" /> import { defineConfig } from "vite"; import { configDefaults } from "vitest/config"; import react from "@vitejs/plugin-react"; import path from "path"; export default defineConfig({ /** * https://github.com/tajo/ladle/issues/100#issuecomment-1192413254 */ define: { "process.env": process.env, }, // @ts-expect-error -- ??? plugins: [react()], test: { environment: "jsdom", exclude: [...configDefaults.exclude, "snapshot/snapshot.test.ts"], coverage: { all: true, include: ["src/**/*.{ts,tsx}"], exclude: [ "**/*.stories.tsx", "**/*.gql.generated.ts", "**/*.gql.ts", "**/dao.ts", "src/infra/graphql/types.ts", "src/ui/provider/Wrapper.tsx", "src/ui/provider/ReactQuery.tsx", "src/ui/provider/ErrorBoundary.tsx", "src/infra/env.ts", ], provider: "istanbul", }, }, resolve: { alias: { "~": path.join(__dirname, "./src"), }, }, server: { /** * https://github.com/tajo/ladle/blob/main/e2e/playwright/vite.config.ts */ open: "none", }, preview: { /** * https://github.com/tajo/ladle/blob/main/e2e/playwright/vite.config.ts */ open: "none", }, }); // TODO カバレッジしきい値 // https://github.com/vitest-dev/vitest/issues/1241
The text was updated successfully, but these errors were encountered:
🔧[x.x.o]: Add threshold of test coverage Close #859
b55de1f
Closed in b55de1f
Sorry, something went wrong.
⬆️[x.x.o]: bump (#1215)
886d932
* ⬆️[x.x.o]: bump * 🔧[x.x.o]: Add threshold of test coverage Close #859
akira-toriyama
No branches or pull requests
vitest-dev/vitest#1241
next.js-tpl/vite.config.ts
Line 57 in 2e11f53
The text was updated successfully, but these errors were encountered: