import { describe, it, expect } from 'vitest'; import { AuthGuard } from './AuthGuard'; describe('AuthGuard', () => { it('should be defined', () => { expect(AuthGuard).toBeDefined(); }); });