-
Notifications
You must be signed in to change notification settings - Fork 0
/
all.js
31 lines (29 loc) · 1.09 KB
/
all.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
import TestRandomDataSet from './testRandomDataset';
import TestCsvDataSet from './testCsvDataset';
import TestCustomPointShape from './testCustomPointShape';
import { TestOptionPointColor, TestOptionPointSize, TestOptionColormapVisibility, TestOptionTransparency, TestOptionPointDensity, TestOptionPointClusters, TestOptionPadding, TestOptionPointShape, TestOptionPointOpacity } from './testOptions';
import { TestXAxisHistogram, TestYAxisHistogram, TestColormapHistogram, TestNumHistogramBins, TestHistogramHeight } from './testHistogram';
import TestThumbnails from './testThumbnails';
import TestFormula from './testFormula';
const allTests = [
TestRandomDataSet,
TestCsvDataSet,
TestOptionPointColor,
TestOptionPointSize,
TestOptionColormapVisibility,
TestOptionTransparency,
TestOptionPointDensity,
TestOptionPointClusters,
TestOptionPadding,
TestOptionPointShape,
TestOptionPointOpacity,
TestXAxisHistogram,
TestYAxisHistogram,
TestColormapHistogram,
TestNumHistogramBins,
TestHistogramHeight,
TestCustomPointShape,
TestThumbnails,
TestFormula,
];
export default allTests;