2026-02-05 13:09:33 -08:00
|
|
|
import { highlight, mute } from '../src/style.js'
|
2024-05-28 11:00:03 -07:00
|
|
|
|
|
|
|
|
describe('style', () => {
|
|
|
|
|
describe('highlight', () => {
|
|
|
|
|
it('adds cyan color to the string', () => {
|
|
|
|
|
expect(highlight('foo')).toBe('\x1B[36mfoo\x1B[39m')
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
describe('mute', () => {
|
|
|
|
|
it('adds gray color to the string', () => {
|
|
|
|
|
expect(mute('foo')).toBe('\x1B[38;5;244mfoo\x1B[39m')
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
})
|