I'd like to do performance testing for the following unit test.
describe("simple test", async() => {
it("first test", async() => {
assert.equal(myProgram(), 1);
})
})
But I'm not sure where to start.
How can I add performance testing tools to my mocha unit tests?