Philippe Jean
Philippe Jean
have the same issue here. since I'm calling nodeunit to generate a dynamic test report of the code on the server, the setup and teardown are only called the first...
it is caused by the delete group.setUp and delete group.tearDown in the following lines of core.js ``` javascript if (group.setUp) { setUps.push(group.setUp); delete group.setUp; } if (group.tearDown) { tearDowns.unshift(group.tearDown); delete...
I was able to fix the above problem by modifying core.js but then decided to leave that aside. after discussion with my team, we decided to switch our unit tests...