Date Created: 2024/01/24
Last Update: 2024/03/17
export function foo(a,b){ return a + b}
import foo from "./foo.js" test('test foo', async () => { expect(foo(3, 6)).toBe(9);});
jest path/to/my-test.js
or
npm test -- path/to/my-test.js