Lines Matching defs:description
200 if (this.suitesStack.some(suite => { return suite.description === desc })) {
208 if (this.currentRunningSuite.description === '' || this.currentRunningSuite.description == null) {
215 const suite = new SuiteService.Suite({ description: desc });
242 finalDesc = finalDesc + '.' + suite.description;
309 if (it.description != null || it.description !== '') {
310 temp = prefix === '' ? it.description : prefix + '.' + it.description;
345 description: suite.description + '#' + itItem.description,
430 if (!configService.filterDesc(suite.description, itItem.description, itItem.fi, null)) {
431 itArray.push({ 'itName': itItem.description });
434 obj[suite.description] = itArray;
441 if (!configService.filterSuite(suiteItem.description)) {
477 if (suite.description != null && suite.description !== '') {
480 prefix = prefixStack.join('.') + '.' + suite.description;
482 prefix = suite.description;
484 prefixStack.push(suite.description);
490 let it = { 'itName': spec.description };
576 this.description = attrs.description || '';
597 return item.description !== desc;
617 if (this.description !== '') {
649 if (this.description !== '') {
656 if ((Object.prototype.toString.call(itNames) === '[object Array]' && itNames.includes(specItem.description)) ||
657 (Object.prototype.toString.call(itNames) === '[object String]' && itNames === specItem.description)) {
666 if ((Object.prototype.toString.call(itNames) === '[object Array]' && itNames.includes(specItem.description)) ||
667 (Object.prototype.toString.call(itNames) === '[object String]' && itNames === specItem.description)) {
687 console.info('break description :' + this.description);
715 // 遇错即停模式, 发现用例有问题,直接返回,不在执行后面的description
718 console.info(`${TAG}break description : ${this.description}`);
731 if (this.description !== '') {
763 if (this.description !== '') {
850 if (configService.filterDesc(suiteService.currentRunningSuite.description, desc, filter, this.coreContext) && isFilter && !suiteService.fullRun) {
855 const spec = new SpecService.Spec({ description: desc, fi: filter, fn: processedFunc });
862 console.info(`${TAG} runSkipped is skipped , just run xit, don't run it: ${spec.description}`);
866 configService.filterXdescribe.push(suiteService.getCurrentRunningSuite().description);
896 finalDesc = finalDesc + '.' + suite.description;
931 this.description = attrs.description || '';
1166 console.info(`${TAG}[suite start]${this.suiteService.getCurrentRunningSuite().description}`);
1170 console.info(`${TAG}start running case '${this.specService.currentRunningSpec.description}'`);
1183 this.formatPrint('error', spec.description + ' ; consuming ' + spec.duration + 'ms');
1186 this.formatPrint('fail', spec.description + ' ; consuming ' + spec.duration + 'ms');
1189 this.formatPrint('pass', spec.description + ' ; consuming ' + spec.duration + 'ms');
1197 console.info(`[suite end] ${suite.description} consuming ${suite.duration} ms${message}`);