1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1× 1× 1× 1× 1× 1× 1× 1× | /** * Created by glenn on 3/10/2017. */ describe("A suite is just a function", function () { var a; it("and so is a spec", function () { a = true; expect(a).toBe(true); }); it("and so is a spec not", function () { a = true; expect(a).toBe(true); }); }); |