···11+// pnpm dlx tsx scripts/demo-with-label.ts
22+import { withLabel } from '../packages/vitest/src/node/reporters/renderers/utils.ts'
33+44+console.log(withLabel('red', 'ERROR', 'This is an error message'))
55+console.log(withLabel('green', 'SUCCESS', 'This is a success message'))
66+console.log(withLabel('blue', 'INFO', 'This is an info message'))
77+console.log(withLabel('cyan', 'DEBUG', 'This is a debug message'))
88+console.log(withLabel('yellow', 'WARNING', 'This is a warning message'))