14 lines
284 B
TypeScript
14 lines
284 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
import { describe, it, expect, beforeEach } from 'vitest';
|
|
|
|
describe('MathService', () => {
|
|
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
});
|
|
|
|
it('should add two numbers', () => {
|
|
expect(5).toEqual(5)
|
|
});
|
|
}); |