is it possible to NOT log "largeObject" to the console when the performance checker is just imported? When I import "performanceChecker" the code gets executed immediately and slows down execution of various tests...
const largeObject = createLargeObject();
const largeObjectArray: Record<string, string>[] = [];
for (let i = 0; i < 50; i++) {
largeObjectArray.push(largeObject);
}
hey there
is it possible to NOT log "largeObject" to the console when the performance checker is just imported? When I import "performanceChecker" the code gets executed immediately and slows down execution of various tests...
thanks! miro