9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import { AuthGuard } from './AuthGuard';
|
|
|
|
describe('AuthGuard', () => {
|
|
it('should be defined', () => {
|
|
expect(AuthGuard).toBeDefined();
|
|
});
|
|
});
|