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