Lines Matching refs:suitesStack
143 this.suitesStack = [this.rootSuite]; property
161 this.suitesStack.push(suite);
163 let childSuite = this.suitesStack.pop();
164 if (this.suitesStack.length === 0) {
166 this.suitesStack.push(childSuite);
168 if (this.suitesStack.length > 1) {
169 this.currentRunningSuite = this.suitesStack.pop();
171 this.currentRunningSuite = this.suitesStack.pop();
172 this.suitesStack.push(this.currentRunningSuite);
536 suiteService.suitesStack.push(this);
571 let childSuite = suiteService.suitesStack.pop();
572 if (suiteService.suitesStack.length === 0) {
573 suiteService.suitesStack.push(childSuite);
575 if (suiteService.suitesStack.length > 1) {
576 suiteService.setCurrentRunningSuite(suiteService.suitesStack.pop());
578 let currentRunningSuite = suiteService.suitesStack.pop();
580 suiteService.suitesStack.push(currentRunningSuite);