import { describe, it, expect } from 'vitest' describe('vitest smoke', () => { it('runs', () => { expect(1 + 1).toBe(2) }) it('resolves @ alias', async () => { const mod = await import('@/api/taskService.js') expect(mod).toBeTruthy() expect(typeof mod.getTasks).toBe('function') }) })