1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

added trivial test

This commit is contained in:
Annika Hannig
2022-07-27 16:03:00 +02:00
parent 7bbc38c7cf
commit 989f03a4aa

8
ui/src/app/Main.test.js Normal file
View File

@ -0,0 +1,8 @@
import { render } from '@testing-library/react';
import Main from 'app/Main';
test('render Main without crashing', () => {
render(<Main />);
});