How to do a performance test for a mocha library?
I need to do performance testing for the below Mocha unit test.
describe("simple test", async() =>{
it("first test" , async()=>{
assert.equal( 1 , 1);
})
})
But I do not know which open source tool to use.
Can anyone introduce me to some open source performance testing tools for the Mocha Library?
Comments
Post a Comment