You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Typescript 1.8.10 and Karma in watch mode.
If I run tsc -w and change any file, karma detects that all my source files was changed (bad)
I have big solution with more what 1000 files and get a lot of annoyingINFO [watcher]: Changed file "...file.js" output messages in karma console (bad).
Usually I use fdescribe or fit jasmine methods to run only related tests for code changes. This makes tests run much faster, but I still should white up to 10 seconds because I get 1000 File changed messages in console. I tried to set karma logLevel to config.LOG_ERROR, but delay is still the same. (bad)
If use Visual Studio 2015 it works fine and karma notify only about one file changes which I'm editing (good)
Maybe we can emit only changed file, like in Visual Studio?
The text was updated successfully, but these errors were encountered:
I'm using Typescript 1.8.10 and Karma in watch mode.
tsc -w
and change any file, karma detects that all my source files was changed (bad)INFO [watcher]: Changed file "...file.js"
output messages in karma console (bad).Maybe we can emit only changed file, like in Visual Studio?
The text was updated successfully, but these errors were encountered: