Commit 0884c496 authored by Evgeny's avatar Evgeny

Fix useless test

parent be0bac1e
describe('c3 api load', function () {
'use strict';
var chart, args;
var chart, args;
args = {
data: {
columns: [
['data1', 30, 200, 100, 400, 150, 250],
['data2', 5000, 2000, 1000, 4000, 1500, 2500]
]
}
};
beforeEach(function (done) {
chart = window.initChart(chart, args, done);
......@@ -11,18 +20,6 @@ describe('c3 api load', function () {
describe('as column', function () {
it('should update args', function () {
args = {
data: {
columns: [
['data1', 30, 200, 100, 400, 150, 250],
['data2', 5000, 2000, 1000, 4000, 1500, 2500]
]
}
};
expect(true).toBeTruthy();
});
it('should load additional data', function (done) {
var main = chart.internal.main,
legend = chart.internal.legend;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment