test apps api

This commit is contained in:
2025-12-23 23:14:51 +01:00
parent 16cd572c63
commit efcdbd17f2
71 changed files with 3924 additions and 913 deletions

View File

@@ -0,0 +1,14 @@
import { describe, expect, it } from 'vitest';
import { HelloService } from './HelloService';
describe('HelloService', () => {
it('is defined', () => {
const service = new HelloService();
expect(service).toBeDefined();
});
it('getHello returns "Hello World"', () => {
const service = new HelloService();
expect(service.getHello()).toBe('Hello World');
});
});