Test Methods
// Via inline annotation
function shouldBeAwesome() test{}
/**
* Via comment annotation
* @test
*/
function shouldBeAwesome(){}
// via conventions
function testShouldDoThis(){}
function shouldDoThisTest(){}function testIncludes(){
$assert.includes( "hello", "HE" );
$assert.includes( [ "Monday", "Tuesday" ] , "monday" );
}Last updated
Was this helpful?