@gunny/perf-test
v0.1.3
Published
性能测试
Downloads
3
Readme
@gunny/perf-test
简介
性能测试,控制台查看测试结果。
下载
npm install @gunny/perf-test -D
使用
import perfTest from "@gunny/perf-test";
function test() {
// 某些操作
}
// 测试10次
perfTest(10, () => {
test();
});
// 异步测试
async function asyncTest(done) {
// 某些异步操作
done();
}
perfTest.async(10, (done) => {
asyncTest(done);
});