Skip to content

Commit d7bf43a

Browse files
Muhammad AhmadMuhammad Ahmad
Muhammad Ahmad
authored and
Muhammad Ahmad
committed
fix: lint format
1 parent da6e68f commit d7bf43a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/benchmark/src/benchmark.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ function logMemoryUsage(message = '') {
3232

3333
async function test(name, fn) {
3434
await null;
35-
console.log('\n\n')
35+
console.log('\n\n');
3636
console.log('Running test: ', name);
37-
logMemoryUsage("Memory Usage Before Test: ");
37+
logMemoryUsage('Memory Usage Before Test: ');
3838
try {
3939
await fn({ assert, truthy });
4040
console.log(`✅ Passed`);
4141
} catch (err) {
4242
console.log(`❌ Failed: ${err.message}`);
4343
}
44-
logMemoryUsage("Memory Usage After Test: ");
44+
logMemoryUsage('Memory Usage After Test: ');
4545
}
4646

4747
export { benchmark, test };

0 commit comments

Comments
 (0)