feat: Introduce jest for backend tests

This commit is contained in:
Faruk AYDIN
2023-09-30 14:31:01 +02:00
parent 1a3418de58
commit 13263eea76
4 changed files with 3073 additions and 2305 deletions

View File

@@ -0,0 +1,3 @@
test('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});