[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

fix: clear screen and scrollback on iTerm2 (#5978)

authored by

Oleksii Shurubura and committed by
GitHub
(Jun 29, 2024, 2:54 PM +0300) d7f23d08 429e1a7f

+1 -1
+1 -1
packages/vitest/src/node/logger.ts
··· 64 64 return 65 65 } 66 66 67 - this.console.log(`${ERASE_SCROLLBACK}${CLEAR_SCREEN}${message}`) 67 + this.console.log(`${CLEAR_SCREEN}${ERASE_SCROLLBACK}${message}`) 68 68 } 69 69 70 70 clearScreen(message: string, force = false) {