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
While using karma to do TDD (with {autowatch:true, singleRun:false}), there's an issue when I add a new file.
Karma detects the change (and restart a test run), but the tests in the new file aren't executed.
Also, if you delete an existing test file, Karma still detects there's a change in the filesystem and restart a test run, but the removed test file tests are still being run!
I tried with nocache:true, but it seems to only affects what is being served, and it crashes as it tries to download and run the now-unexisting test file.
The text was updated successfully, but these errors were encountered:
While using karma to do TDD (with
{autowatch:true, singleRun:false}
), there's an issue when I add a new file.Karma detects the change (and restart a test run), but the tests in the new file aren't executed.
Also, if you delete an existing test file, Karma still detects there's a change in the filesystem and restart a test run, but the removed test file tests are still being run!
I tried with
nocache:true
, but it seems to only affects what is being served, and it crashes as it tries to download and run the now-unexisting test file.The text was updated successfully, but these errors were encountered: