10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import { AuthProvider, useAuth } from './AuthContext';
|
|
|
|
describe('AuthContext', () => {
|
|
it('should be defined', () => {
|
|
expect(AuthProvider).toBeDefined();
|
|
expect(useAuth).toBeDefined();
|
|
});
|
|
});
|