Skip to content

Commit b01c5cc

Browse files
committed
Merge branch 'main' of github.com:vizzuhq/vizzu-lib into main
2 parents e910ef3 + 4f5119d commit b01c5cc

File tree

199 files changed

+2034
-1008
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+2034
-1008
lines changed

test/integration/modules/integration-test/test-case/test-case-result.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@ class TestCaseResult {
9797
this.#createImage(this.#testData, '-1new');
9898
}
9999
if (this.#testCaseObj.createImages !== "DISABLED" && !this.#vizzuUrl.includes(VizzuUrl.getRemoteStableBucket())) {
100-
this.#runTestCaseRef(this.#testCaseObj, this.#browserChrome).then(testDataRef => {
100+
let testCaseObj = Object.assign({}, this.#testCaseObj);
101+
testCaseObj.createImages = 'ALL';
102+
this.#runTestCaseRef(testCaseObj, this.#browserChrome).then(testDataRef => {
101103
this.#createImage(testDataRef, '-2ref');
102104
this.#createDifImage(this.#testData, testDataRef);
103105
this.#createTestCaseResultErrorMsg();
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export var data = {
2+
series: [
3+
{ name: 'Foo', values: [42, 43, 44] },
4+
{ name: 'Bar', values: [2, 3, 4] }
5+
]
6+
};

test/integration/test_options/style/plot/backgroundColor/chart.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { data } from "/test/integration/test_options/data.js";
44
export default class Chart {
55
static static(color) {
66
return chart => {
7-
console.log("plot backgroundColor color: " + color);
7+
console.log("plot backgroundColor: " + color);
88
return chart.animate(
99
{
1010
data: data,
@@ -25,7 +25,7 @@ export default class Chart {
2525

2626
static animated(color) {
2727
return chart => {
28-
console.log("plot backgroundColor color: " + color);
28+
console.log("plot backgroundColor: " + color);
2929
return chart.animate(
3030
{
3131
style: {

test/integration/test_options/style/plot/borderColor/animated/hex.js

Lines changed: 0 additions & 11 deletions
This file was deleted.

test/integration/test_options/style/plot/borderColor/animated/hex/black-white.mjs

Lines changed: 0 additions & 11 deletions
This file was deleted.

test/integration/test_options/style/plot/borderColor/animated/hex/blue_custom-yellow_custom.mjs

Lines changed: 0 additions & 11 deletions
This file was deleted.

test/integration/test_options/style/plot/borderColor/animated/hex/white-black.mjs

Lines changed: 0 additions & 11 deletions
This file was deleted.

test/integration/test_options/style/plot/borderColor/animated/hex/yellow_custom-blue_custom.mjs

Lines changed: 0 additions & 11 deletions
This file was deleted.

test/integration/test_options/style/plot/borderColor/animated/rgb.js

Lines changed: 0 additions & 11 deletions
This file was deleted.

test/integration/test_options/style/plot/borderColor/animated/rgb/black-white.mjs

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)