* Returns a name of the test prefixed by name of all its ancestors in ascending order, separated by a space * Ex."grandparent parent test" * * It's needed to match a single test with non-unique name by pattern * @returns {string}
()
| 893 | * @returns {string} |
| 894 | */ |
| 895 | getTestNameWithAncestors() { |
| 896 | if (!this.parent) return ''; |
| 897 | |
| 898 | return `${this.parent.getTestNameWithAncestors()} ${this.name}`; |
| 899 | } |
| 900 | |
| 901 | /** |
| 902 | * @returns {boolean} |
no outgoing calls
no test coverage detected