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 30a2618 commit 5425110Copy full SHA for 5425110
test/integration/modules/integration-test/test-case/test-case-result.js
@@ -97,7 +97,9 @@ class TestCaseResult {
97
this.#createImage(this.#testData, '-1new');
98
}
99
if (this.#testCaseObj.createImages !== "DISABLED" && !this.#vizzuUrl.includes(VizzuUrl.getRemoteStableBucket())) {
100
- this.#runTestCaseRef(this.#testCaseObj, this.#browserChrome).then(testDataRef => {
+ let testCaseObj = Object.assign({}, this.#testCaseObj);
101
+ testCaseObj.createImages = 'ALL';
102
+ this.#runTestCaseRef(testCaseObj, this.#browserChrome).then(testDataRef => {
103
this.#createImage(testDataRef, '-2ref');
104
this.#createDifImage(this.#testData, testDataRef);
105
this.#createTestCaseResultErrorMsg();
0 commit comments