all files / specs/ spec_spec.ts

100% Statements 8/8
100% Branches 0/0
100% Functions 3/3
100% Lines 8/8
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24                               
/**
 * 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);
    });
});