Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vctqs1 committed Jul 2, 2024
1 parent ba4c423 commit 304cfe0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/vite/src/node/__tests__/logger.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ describe('createLogger', () => {

logger.info('message')
// cyan color and bold
expect(log).toHaveBeenCalledWith('\u001b[36m\u001b[1m[prefix]\u001b[22m\u001b[39m message')
expect(log).toHaveBeenCalledWith(
'\u001b[36m\u001b[1m[prefix]\u001b[22m\u001b[39m message',
)
log.mockRestore()
})
})

0 comments on commit 304cfe0

Please sign in to comment.