Initial commit

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-07-08 17:47:05 +03:00
commit cca5cf6781
54 changed files with 28103 additions and 0 deletions

10
tests/app.test.tsx Normal file
View File

@@ -0,0 +1,10 @@
import React from 'react';
import renderer from 'react-test-renderer';
import { it } from '@jest/globals';
import App from '../src/app';
it('renders correctly', () => {
const tree = renderer.create(<App />).toJSON();
expect(tree).toBeTruthy();
});

1
tests/jest.setup.js Normal file
View File

@@ -0,0 +1 @@
jest.useFakeTimers();