I am testing nodejs backend code with jasmine and trying to set up testem.
My testem.json
:
{
"framework": "jasmine",
"launchers": {
"Node": {
"command": "jasmine"
}
},
"launch_in_dev": [
"Node"
]
}
When i run testem
i see proper jasmine output, no problems here, it says:
Started
....
4 specs, 0 failures
Finished in 0.024 seconds
But seems like jasmine reporter doesn't report testem about total/passed/failed.
If just shows:
How do i fix that?