Suites: Describe Your Tests
Describe(), Feature(), Scenario(), Given(), When()
function run( testResults, testBox ){
describe("A suite", function(){
it("contains spec with an awesome expectation", function(){
expect( true ).toBeTrue();
});
it("contains spec with a failure expectation", function(){
expect( true ).toBeFalse();
});
});
}Arguments
Was this helpful?