import { describe, expect, it } from 'vitest' import { VIEWER_ACTION_CLASS, VIEWER_NAV_CLASS } from './viewerChromeClasses' describe('viewer chrome classes', () => { it('keeps the load-bearing action button tokens', () => { expect(VIEWER_ACTION_CLASS).toContain('size-10') expect(VIEWER_ACTION_CLASS).toContain('rounded-full') }) it('keeps the load-bearing navigation button tokens', () => { expect(VIEWER_NAV_CLASS).toContain('absolute') expect(VIEWER_NAV_CLASS).toContain('size-12') expect(VIEWER_NAV_CLASS).toContain('-translate-y-1/2') }) })