aboutsummaryrefslogtreecommitdiffstats
path: root/web/nms.gathering.org/speedometer/c3-master/spec/api.zoom-spec.js
diff options
context:
space:
mode:
authorKristian Lyngstol <kristian@bohemians.org>2016-03-04 19:10:04 +0100
committerKristian Lyngstol <kristian@bohemians.org>2016-03-04 19:10:04 +0100
commit15dde408db57009e1e4e26d969b9b3e6c1e0c255 (patch)
treebed87bc591f44dbdc7967c2c9f8b26dd1b040f49 /web/nms.gathering.org/speedometer/c3-master/spec/api.zoom-spec.js
parent2e808e318a7b9abd09bf93116dae5368025c3611 (diff)
nms: Remove redundant files
speedometer probably doesn't work now anyway until it's heavily updated.
Diffstat (limited to 'web/nms.gathering.org/speedometer/c3-master/spec/api.zoom-spec.js')
-rw-r--r--web/nms.gathering.org/speedometer/c3-master/spec/api.zoom-spec.js115
1 files changed, 0 insertions, 115 deletions
diff --git a/web/nms.gathering.org/speedometer/c3-master/spec/api.zoom-spec.js b/web/nms.gathering.org/speedometer/c3-master/spec/api.zoom-spec.js
deleted file mode 100644
index 4a65927..0000000
--- a/web/nms.gathering.org/speedometer/c3-master/spec/api.zoom-spec.js
+++ /dev/null
@@ -1,115 +0,0 @@
-describe('c3 api zoom', function () {
- 'use strict';
-
- var chart, args;
-
- beforeEach(function (done) {
- chart = window.initChart(chart, args, done);
- });
-
- describe('zoom', function () {
-
- it('should update args', function () {
- args = {
- data: {
- columns: [
- ['data1', 30, 200, 100, 400, 150, 250],
- ['data2', 50, 20, 10, 40, 15, 25],
- ['data3', 150, 120, 110, 140, 115, 125]
- ]
- },
- zoom: {
- enabled: true
- }
- };
- expect(true).toBeTruthy();
- });
-
- it('should be zoomed properly', function () {
- var target = [3, 5], domain;
- chart.zoom(target);
- domain = chart.internal.x.domain();
- expect(domain[0]).toBe(target[0]);
- expect(domain[1]).toBe(target[1]);
- });
-
- it('should be zoomed properly again', function () {
- var target = [1, 4], domain;
- chart.zoom(target);
- domain = chart.internal.x.domain();
- expect(domain[0]).toBe(target[0]);
- expect(domain[1]).toBe(target[1]);
- });
-
- it('should load timeseries data', function () {
- args = {
- data: {
- x: 'date',
- columns: [
- ['date', '2014-01-01', '2014-01-02', '2014-08-01', '2014-10-19'],
- ['data1', 30, 200, 100, 400]
- ]
- },
- axis: {
- x: {
- type: 'timeseries'
- }
- },
- zoom: {
- enabled: true
- }
- };
- expect(true).toBeTruthy();
- });
-
- it('should be zoomed properly', function () {
- var target = [new Date(2014, 7, 1), new Date(2014, 8, 1)], domain;
- chart.zoom(target);
- domain = chart.internal.x.domain();
- expect(+domain[0]).toBe(+target[0]);
- expect(+domain[1]).toBe(+target[1]);
- });
-
- it('should be zoomed properly', function () {
- var target = ['2014-08-01', '2014-09-01'], domain;
- chart.zoom(target);
- domain = chart.internal.x.domain();
- expect(+domain[0]).toBe(+chart.internal.parseDate(target[0]));
- expect(+domain[1]).toBe(+chart.internal.parseDate(target[1]));
- });
-
- });
-
- describe('unzoom', function () {
-
- it('should load indexed data', function () {
- args = {
- data: {
- columns: [
- ['data1', 30, 200, 100, 400, 150, 250]
- ]
- },
- zoom: {
- enabled: true
- }
- };
- expect(true).toBeTruthy();
- });
-
- it('should be unzoomed properly', function () {
- var target = [1, 4], orginal = chart.internal.x.domain(), domain;
-
- chart.zoom(target);
- domain = chart.internal.x.domain();
- expect(domain[0]).toBe(target[0]);
- expect(domain[1]).toBe(target[1]);
-
- chart.unzoom();
- domain = chart.internal.x.domain();
- expect(domain[0]).toBe(orginal[0]);
- expect(domain[1]).toBe(orginal[1]);
- });
-
- });
-
-});