angular-cli: The ng test command results in Executed 0 of 0 ERROR on a new project

Bug Report or Feature Request (mark with an x)

- [x ] bug report -> please search issues before submitting
- [ ] feature request

Versions.

@angular/cli: 1.0.0 node: 7.4.0 os: win32 x64 @angular/common: 4.1.2 @angular/compiler: 4.1.2 @angular/core: 4.1.2 @angular/forms: 4.1.2 @angular/http: 4.1.2 @angular/platform-browser: 4.1.2 @angular/platform-browser-dynamic: 4.1.2 @angular/router: 4.1.2 @angular/cli: 1.0.0 @angular/compiler-cli: 4.1.2

Repro steps.

Run ng new cli Change directory to cli Run npm test

The log given by the failure.

11 05 2017 15:48:09.772:WARN [karma]: No captured browser, open http://localhost:9876/ 11 05 2017 15:48:09.786:INFO [karma]: Karma v1.4.1 server started at http://0.0.0.0:9876/ 11 05 2017 15:48:09.787:INFO [launcher]: Launching browser Chrome with unlimited concurrency 11 05 2017 15:48:09.792:INFO [launcher]: Starting browser Chrome 11 05 2017 15:48:11.635:INFO [Chrome 58.0.3029 (Windows 10 0.0.0)]: Connected on socket jxFy-w1ruFVYlutmAAAA with id 36112906 Chrome 58.0.3029 (Windows 10 0.0.0): Executed 0 of 0 ERROR (0.002 secs / 0 secs)

Desired functionality.

Expected it to find .spec.ts files and run tests.

Mention any other details that might be useful.

Just started experiencing this today (May 11th, 2017). Can replicate it on existing projects that are using @angular/cli: 1.0.0 by deleting the node_modules dir and running an npm i then npm test.

Also note that npm run e2e works fine with a response of Executed 1 of 1 spec SUCCESS in 1 sec..

About this issue

  • Original URL
  • State: closed
  • Created 7 years ago
  • Reactions: 8
  • Comments: 15 (3 by maintainers)

Most upvoted comments

This issue is caused by dependency mime @1.3.5, which was released today. Mime is a dep of karma. You can overwrite it with npm install mime@1.3.4 -S

We were having this same issue. I was able to track it down to a change from mime@1.3.4 -> mime@1.3.5. Changing the dependency back to mime@1.3.4 fixed our build.

Heya, this issue shouldn’t happen starting 1.1.0 (https://github.com/angular/angular-cli/pull/6160). That PR removed the need to specify mime types along with a performance increases. It’s released as a beta in @angular/cli@next if you want to try.

I’m still seeing this in 1.1.3. I just upgraded from 1.0.0-beta.28.3. It wasn’t a problem before with the mime entry. Now I’m seeing the issue both with and without the mime entry.

Any thoughts?