blob: 5ff403413117edde03e94374ff5982688236a218 [file] [log] [blame]
import { sayHello, error } from "./hello";
describe('multiple stack frames', () => {
it('failing test', () => {
expect(sayHello()).toBe('World');
});
it('another failing test', () => {
expect(error()).toBe(null);
});
});