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
After migrating from @angular/cli to this testing setup, two of my tests started failing. Both of these tests are long standing and have not been modified in ages.
I do not expect a solution to this problem, but I consider leaving the repo in it's current state (as long as we are unable to explain the behaviour) pretty dangerous in terms of other user's time. There is nothing at all to make you think that these tests would be affected by app.component.spec.ts, indeed everything we know about the unit testing setup tells us otherwise. You can easily sink several hours into this problem before coming to this point, or just getting frustrated and binning your perfectly valid tests.
The text was updated successfully, but these errors were encountered:
After migrating from @angular/cli to this testing setup, two of my tests started failing. Both of these tests are long standing and have not been modified in ages.
I tried re-writing one of the tests using the latest recommendations on Stack Overflow, to no avail.
To cut a very long story short, I figured out that commenting out the tests in
app.component.spec.ts
let the tests run fine.I also tried empty tests (nothing in the test block at all), as well as adding an
afterEach() => destroy
, which didn't help.To Replicate:
git clone [email protected]:lathonez/clicker.git
cd clicker
npm install
app.component.spec.ts
npm test
Note
I do not expect a solution to this problem, but I consider leaving the repo in it's current state (as long as we are unable to explain the behaviour) pretty dangerous in terms of other user's time. There is nothing at all to make you think that these tests would be affected by
app.component.spec.ts
, indeed everything we know about the unit testing setup tells us otherwise. You can easily sink several hours into this problem before coming to this point, or just getting frustrated and binning your perfectly valid tests.The text was updated successfully, but these errors were encountered: