Danny Rehl
Danny Rehl
App crashes after prompting ```npm start``` with error message > Uncaught Exception: TypeError: Cannot read property 'setIcon' of undefined at ._onTimeout (//sensitive/main.js:19:13) at Timer.listOnTimeout (timers.js:92:15) [email protected] with npm version 3.5.2...
There are some problematic cases in the tests. For example this code: ```python for i in range(0, 10): response = client.get("/t1") assert response.status_code == 200 if i < 5 else...
Assert statements with inline if/else blocks in the tests are misleading. An assert statement like `assert response.status_code == 200 if i < 5 else 429` will be evaluated to `assert...