import { describe, it, expect } from 'vitest'; import { getCurrentYear } from './copyright-year'; describe('getCurrentYear', () => { it('returns the current calendar year', () => { expect(getCurrentYear()).toBe(new Date().getFullYear()); }); });