Skip to content

🔨 fix: excluded tests from tsconfig#26

Merged
Jophkins merged 1 commit intomainfrom
dev
Feb 3, 2026
Merged

🔨 fix: excluded tests from tsconfig#26
Jophkins merged 1 commit intomainfrom
dev

Conversation

@Jophkins
Copy link
Owner

@Jophkins Jophkins commented Feb 3, 2026

No description provided.

@vercel
Copy link

vercel bot commented Feb 3, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
beetforge Ready Ready Preview, Comment Feb 3, 2026 0:14am

@Jophkins Jophkins merged commit 6efe570 into main Feb 3, 2026
3 of 5 checks passed
Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 7f8078ccf2

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

"**/*.mts"
],
"exclude": ["node_modules"]
"exclude": ["node_modules", "prisma/migrations", "tests", "**/*.test.ts", "**/*.test.tsx", "**/*spec.ts", "**/*spec.tsx"]

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Fix spec glob so .spec files are excluded

The new exclusion patterns use **/*spec.ts and **/*spec.tsx, which only match filenames ending in spec.ts/spec.tsx without a preceding dot. Common test filenames like foo.spec.ts and foo.spec.tsx will still be included in the TypeScript program, so the intended “exclude tests” change won’t apply to those files and can leave test type errors in the build. If the goal is to exclude .spec.* tests, the glob should be **/*.spec.ts and **/*.spec.tsx.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant