chore: fmt

This commit is contained in:
Brooklyn Nicholson 2026-04-08 22:02:38 -05:00
parent 9d8f9765c1
commit c49bbbe8c2
5 changed files with 2 additions and 25 deletions

View file

@ -2,9 +2,7 @@ import { describe, expect, it } from 'vitest'
import { DEFAULT_THEME, fromSkin } from '../theme.js'
describe('DEFAULT_THEME', () => {
it('has brand defaults', () => {
expect(DEFAULT_THEME.brand.name).toBe('Hermes Agent')
expect(DEFAULT_THEME.brand.prompt).toBe('')
@ -17,9 +15,7 @@ describe('DEFAULT_THEME', () => {
})
})
describe('fromSkin', () => {
it('overrides banner colors', () => {
expect(fromSkin({ banner_title: '#FF0000' }, {}).color.gold).toBe('#FF0000')
})