In case of promise is NOT fullfilled forever, mocha doens't give any information about this.
See test below.
describe('test', function () {
it('test', async () => {
await new Promise((r, j) => {});
console.log('hello');
});
})
This gives only following result in terminal
test
test
Waiting for the debugger to disconnect...
Killed
No more informations!
'Tools' 카테고리의 다른 글
[Blender] Depth-buffer in Vulkan. And depth image at Blender (0) | 2022.06.02 |
---|---|
[VSCode][Mocha] Breakpoint at Mocha-test with typescript! (0) | 2019.05.03 |
[gnumake] Tips and command line variable. (0) | 2015.10.19 |
[Gnumake] Organizing my knowledge about 'gnumake' (0) | 2013.07.11 |
[GNUMake] deferred & immediate assignment. (0) | 2013.07.05 |