Skip to content

Commit 3ccd81d

Browse files
Update logging
1 parent 82764d7 commit 3ccd81d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cursorless-vscode-e2e/src/suite/performance.vscode.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ suite(`Performance: ${numLines} lines JSON`, async function () {
2020
this.beforeEach(function () {
2121
const title = this.currentTest!.title;
2222
if (title !== previousTitle) {
23-
console.log(` * ${title}`);
23+
console.log(` ${title}`);
2424
previousTitle = title;
2525
}
2626
});
@@ -106,7 +106,7 @@ async function testPerformance(threshold: number, action: ActionDescriptor) {
106106

107107
const duration = Math.round(performance.now() - start);
108108

109-
console.log(` ${duration} ms`);
109+
console.log(` ${duration} ms`);
110110

111111
assert.ok(
112112
duration < threshold,

0 commit comments

Comments
 (0)