Add jest for unit tests

This commit is contained in:
2024-01-06 18:42:41 -07:00
parent c292289f29
commit d68561b372
4 changed files with 1290 additions and 44 deletions

12
tests/App.test.js Normal file
View File

@@ -0,0 +1,12 @@
import React from "react";
import renderer from "react-test-renderer";
import App from "./App";
describe("<App />", () => {
it("has 1 child", () => {
const tree = renderer.create(<App />).toJSON();
expect(tree.children.length).toBe(1);
});
});