Name logs with test name only

This commit is contained in:
Franck Royer 2021-03-23 14:42:51 +11:00
parent 127357b0a6
commit 71f3e9aa1f
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -77,7 +77,7 @@ describe('Waku Relay', () => {
); );
const multiAddrWithId = localMultiaddr + '/p2p/' + peerId; const multiAddrWithId = localMultiaddr + '/p2p/' + peerId;
nimWaku = new NimWaku(this.test!.title); nimWaku = new NimWaku(this.test!.ctx!.currentTest!.title);
await nimWaku.start({ staticnode: multiAddrWithId }); await nimWaku.start({ staticnode: multiAddrWithId });
}); });