// __tests__/foo-test.js import foo from '../src/foo.js'; describe('foo()', () => { it('should throw', () => { expect(() => { foo(); }).toThrow(); }); });