1 2 3 4 5 6 7 8 9 10 11 12 13
describe("another", () => { it("fail", () => { expect(1).toBe(0); }); it("pass", () => { expect(1).toBe(1); }); }); test("toplevel test", () => { expect(1).toBe(2); });