Home | History | Annotate | Download | only in lib

Lines Matching refs:description

115   print('Running ' + suite.description + '#' + this.name + ' ...');
154 print('PASS: ' + suite.description + '#' + this.name);
163 this.description = described.description;
169 this.cases.push(new TestCase(this.description + ' :before', undefined,
173 this.cases.push(new TestCase(described.cases[i].description,
180 this.cases.push(new TestCase(this.description + ' :after',
215 print('FAIL: ' + this.description + '#' + testCase.name + ': ' +
221 describe = function(description, fn) {
225 description: parent ? parent.description + ' ' + description : description,
235 specify = it = function(description, fn) {
236 context.beingDescribed.cases.push({description: description, fn: fn});