We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c80c22 commit 760283eCopy full SHA for 760283e
utils/testrunner/Test.js
@@ -101,13 +101,14 @@ class Suite {
101
constructor(parentSuite, name, location) {
102
this._parentSuite = parentSuite;
103
this._name = name;
104
- this._fullName = (parentSuite ? parentSuite.fullName() + ' ' + name : name).trim();
+ const fullName = (parentSuite ? parentSuite.fullName() + ' ' + name : name).trim();
105
+ this._fullName = fullName;
106
this._location = location;
107
this._skipped = false;
108
this._expectation = TestExpectation.Ok;
109
110
this._defaultEnvironment = {
- name() { return this._fullName; },
111
+ name() { return fullName; },
112
};
113
114
this._environments = [this._defaultEnvironment];
0 commit comments