Suites: Describe Your Tests
function run( testResults, testBox ){
describe("A suite", function(){
it("contains spec with an awesome expectation", function(){
expect( true ).toBeTrue();
});
});
}Last updated
Was this helpful?