Files
keyvault/client/src/app/app.component.spec.ts
Bastian Wagner 2eafa21baf unit tests
2026-02-13 15:12:54 +01:00

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