-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBackshift.Graph.C3.Test.js
57 lines (49 loc) · 1.05 KB
/
Backshift.Graph.C3.Test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/**
* Created by jwhite on 5/22/14.
*/
describe('Backshift.Graph.C3.Test', function () {
var div;
beforeEach(function () {
div = d3.select('body').append('div');
});
afterEach(function () {
div.remove();
});
it('should render an svg element within the div', function (done) {
var ds = new Backshift.DataSource.SineWave({
metrics: [
{
name: "sineWave",
amplitude: 5,
hshift: 5,
period: 32 * Math.PI * 60
}
]
});
var c3Graph = new Backshift.Graph.C3({
element: div.node(),
width: 640,
height: 480,
last: 15 * 60,
interval: 1000,
dataSource: ds,
title: "Wave",
verticalLabel: "Units",
model: {
series: [
{
name: "Sine Wave",
metric: "sineWave",
type: "line"
}
]
}
});
c3Graph.render();
setTimeout(function(){
var html = "" + div.node().innerHTML;
expect(html).toContain("svg");
done();
}, 500);
});
});