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) }); });