René's URL Explorer Experiment


Title: "No test suite found in file" error when running Vitest · Issue #32252 · angular/angular-cli · GitHub

Open Graph Title: "No test suite found in file" error when running Vitest · Issue #32252 · angular/angular-cli

X Title: "No test suite found in file" error when running Vitest · Issue #32252 · angular/angular-cli

Description: Which @angular/* package(s) are the source of the bug? Don't known / other Is this a regression? No Description I came across this error and the fix seemed to be to remove the export const statement from the spec, then export it from its...

Open Graph Description: Which @angular/* package(s) are the source of the bug? Don't known / other Is this a regression? No Description I came across this error and the fix seemed to be to remove the export const statemen...

X Description: Which @angular/* package(s) are the source of the bug? Don't known / other Is this a regression? No Description I came across this error and the fix seemed to be to remove the export const stat...

Opengraph URL: https://github.com/angular/angular-cli/issues/32252

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"\"No test suite found in file\" error when running Vitest","articleBody":"### Which @angular/* package(s) are the source of the bug?\n\nDon't known / other\n\n### Is this a regression?\n\nNo\n\n### Description\n\nI came across this error and the fix seemed to be to remove the `export const` statement from the spec, then export it from its own file.\n\nI first reported this to Vitest, but they pointed out that running the test using `npm run test` fails while simple running with the command `vitest` passes. The maintainers suggested that it was an Angular bug.\n\nI created a new StackBlitz from the Angular template, ensured that it was the latest version of Angular, installed vitest and jsdom, and added the minimum config to get it up and running.\n\n### Please provide a link to a minimal reproduction of the bug\n\nhttps://stackblitz.com/edit/stackblitz-starters-sj74ev3n?file=src%2Fabc.spec.ts\n\n### Please provide the exception or error you saw\n\n```true\n❯ npm run test\n\n\u003e test\n\u003e ng test --no-watch\n\n RUN  v4.0.16 /home/projects/stackblitz-starters-sj74ev3n\n\n ✓  demo  src/abc.spec.ts \u003e Main \u003e should run 2ms\n ✓  demo  src/abc.spec.ts \u003e Main \u003e should run 0ms\n\n⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯ Failed Suites 1 ⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯\n\n FAIL   demo  src/main.spec.ts [ src/main.spec.ts ]\nError: No test suite found in file /home/projects/stackblitz-starters-sj74ev3n/src/main.spec.ts\n⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[1/1]⎯\n\n\n Test Files  1 failed | 1 passed (2)\n      Tests  2 passed (2)\n   Start at  14:05:42\n   Duration  3.52s (transform 91ms, setup 2.06s, import 51ms, tests 5ms, environment 620ms)\n```\n\n### Please provide the environment you discovered this bug in (run `ng version`)\n\n```true\nAngular CLI       : 21.0.2\nAngular           : 21.0.3\nNode.js           : 20.19.1\nPackage Manager   : npm 10.8.2\nOperating System  : linux x64\n\n┌───────────────────────────┬───────────────────┬───────────────────┐\n│ Package                   │ Installed Version │ Requested Version │\n├───────────────────────────┼───────────────────┼───────────────────┤\n│ @angular/animations       │ 21.0.3            │ ^21.0.3           │\n│ @angular/build            │ 21.0.2            │ ^21.0.2           │\n│ @angular/cli              │ 21.0.2            │ ^21.0.2           │\n│ @angular/common           │ 21.0.3            │ ^21.0.3           │\n│ @angular/compiler         │ 21.0.3            │ ^21.0.3           │\n│ @angular/compiler-cli     │ 21.0.3            │ ^21.0.3           │\n│ @angular/core             │ 21.0.3            │ ^21.0.3           │\n│ @angular/forms            │ 21.0.3            │ ^21.0.3           │\n│ @angular/platform-browser │ 21.0.3            │ ^21.0.3           │\n│ @angular/router           │ 21.0.3            │ ^21.0.3           │\n│ rxjs                      │ 7.8.2             │ ^7.8.1            │\n│ typescript                │ 5.9.3             │ ^5.9.3            │\n│ vitest                    │ 4.0.16            │ ^4.0.15           │\n│ zone.js                   │ 0.16.0            │ ^0.16.0           │\n└───────────────────────────┴───────────────────┴───────────────────┘\n```\n\n### Anything else?\n\nOriginal issue report to Vitest: https://github.com/vitest-dev/vitest/issues/9412#issuecomment-3725079819","author":{"url":"https://github.com/NateRobinsonAA","@type":"Person","name":"NateRobinsonAA"},"datePublished":"2026-01-08T20:29:14.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/32252/angular-cli/issues/32252"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:47671276-db67-d37c-f417-36570317e964
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idBA4E:29A342:3302CE4:43D2E82:6964A663
html-safe-nonce07f959ac886149c1cfb1c2938cc680871774f5cf42984d1cc949668c085ebfa8
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCQTRFOjI5QTM0MjozMzAyQ0U0OjQzRDJFODI6Njk2NEE2NjMiLCJ2aXNpdG9yX2lkIjoiNDQ1MTE5NzU0NDkwOTAyMjgxOSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmaced49a7fbe766279f0bd43df0923a1540a657d3678cfada6a34b1e291d7bdb1bd
hovercard-subject-tagissue:3794360536
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/angular/angular-cli/32252/issue_layout
twitter:imagehttps://opengraph.githubassets.com/0ea8ee8ef1061a2732020a6b7982d5096c0350cabd6f231760c1ce90e190330a/angular/angular-cli/issues/32252
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/0ea8ee8ef1061a2732020a6b7982d5096c0350cabd6f231760c1ce90e190330a/angular/angular-cli/issues/32252
og:image:altWhich @angular/* package(s) are the source of the bug? Don't known / other Is this a regression? No Description I came across this error and the fix seemed to be to remove the export const statemen...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameNateRobinsonAA
hostnamegithub.com
expected-hostnamegithub.com
None15579c46431b7fd25941c3b09010f74fd1890c7a35226839bbbf40ce70fb3057
turbo-cache-controlno-preview
go-importgithub.com/angular/angular-cli git https://github.com/angular/angular-cli.git
octolytics-dimension-user_id139426
octolytics-dimension-user_loginangular
octolytics-dimension-repository_id36891867
octolytics-dimension-repository_nwoangular/angular-cli
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id36891867
octolytics-dimension-repository_network_root_nwoangular/angular-cli
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release499abb347cb197601d399c346cfeb4b3fa135d5c
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/angular/angular-cli/issues/32252#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fangular%2Fangular-cli%2Fissues%2F32252
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fangular%2Fangular-cli%2Fissues%2F32252
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=angular%2Fangular-cli
Reloadhttps://github.com/angular/angular-cli/issues/32252
Reloadhttps://github.com/angular/angular-cli/issues/32252
Reloadhttps://github.com/angular/angular-cli/issues/32252
angular https://github.com/angular
angular-clihttps://github.com/angular/angular-cli
Notifications https://github.com/login?return_to=%2Fangular%2Fangular-cli
Fork 11.9k https://github.com/login?return_to=%2Fangular%2Fangular-cli
Star 27k https://github.com/login?return_to=%2Fangular%2Fangular-cli
Code https://github.com/angular/angular-cli
Issues 265 https://github.com/angular/angular-cli/issues
Pull requests 23 https://github.com/angular/angular-cli/pulls
Actions https://github.com/angular/angular-cli/actions
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/angular/angular-cli/security
Please reload this pagehttps://github.com/angular/angular-cli/issues/32252
Insights https://github.com/angular/angular-cli/pulse
Code https://github.com/angular/angular-cli
Issues https://github.com/angular/angular-cli/issues
Pull requests https://github.com/angular/angular-cli/pulls
Actions https://github.com/angular/angular-cli/actions
Security https://github.com/angular/angular-cli/security
Insights https://github.com/angular/angular-cli/pulse
New issuehttps://github.com/login?return_to=https://github.com/angular/angular-cli/issues/32252
New issuehttps://github.com/login?return_to=https://github.com/angular/angular-cli/issues/32252
Bughttps://github.com/angular/angular-cli/issues?q=type:"Bug"
"No test suite found in file" error when running Vitesthttps://github.com/angular/angular-cli/issues/32252#top
angular/build:unit-testhttps://github.com/angular/angular-cli/issues?q=state%3Aopen%20label%3A%22angular%2Fbuild%3Aunit-test%22
area: @angular/buildhttps://github.com/angular/angular-cli/issues?q=state%3Aopen%20label%3A%22area%3A%20%40angular%2Fbuild%22
freq1: lowOnly reported by a handful of users who observe it rarelyhttps://github.com/angular/angular-cli/issues?q=state%3Aopen%20label%3A%22freq1%3A%20low%22
https://github.com/NateRobinsonAA
https://github.com/NateRobinsonAA
NateRobinsonAAhttps://github.com/NateRobinsonAA
on Jan 8, 2026https://github.com/angular/angular-cli/issues/32252#issue-3794360536
https://stackblitz.com/edit/stackblitz-starters-sj74ev3n?file=src%2Fabc.spec.tshttps://stackblitz.com/edit/stackblitz-starters-sj74ev3n?file=src%2Fabc.spec.ts
vitest-dev/vitest#9412 (comment)https://github.com/vitest-dev/vitest/issues/9412#issuecomment-3725079819
angular/build:unit-testhttps://github.com/angular/angular-cli/issues?q=state%3Aopen%20label%3A%22angular%2Fbuild%3Aunit-test%22
area: @angular/buildhttps://github.com/angular/angular-cli/issues?q=state%3Aopen%20label%3A%22area%3A%20%40angular%2Fbuild%22
freq1: lowOnly reported by a handful of users who observe it rarelyhttps://github.com/angular/angular-cli/issues?q=state%3Aopen%20label%3A%22freq1%3A%20low%22
Bughttps://github.com/angular/angular-cli/issues?q=type:"Bug"
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.