Skip to content

Commit 943d729

Browse files
authored
Merge pull request #49 from vizzuhq/veghdev
integration test: add option tests and reduce color tests
2 parents 6991831 + e2523fa commit 943d729

File tree

143 files changed

+1102
-1079
lines changed

Some content is hidden

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

143 files changed

+1102
-1079
lines changed
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.

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

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

0 commit comments

Comments
 (0)