forked from pat310/quick-pivot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.spec.js
More file actions
20 lines (19 loc) · 724 Bytes
/
index.spec.js
File metadata and controls
20 lines (19 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import 'babel-polyfill';
import constructorTest from './index/constructor';
import collapseTest from './index/collapse';
import getDataTest from './index/getData';
import expandTest from './index/expand';
import toggleTest from './index/toggle';
import getUniqueValuesTest from './index/getUniqueValues';
import filterTest from './index/filter';
import updateTest from './index/update';
describe('pivot', () => {
describe('constructor', constructorTest);
describe('collapse', collapseTest);
describe('getData', getDataTest);
describe('expand', expandTest);
describe('toggle', toggleTest);
describe('getUniqueValues', getUniqueValuesTest);
describe('filter', filterTest);
describe('update', updateTest);
});