-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.spec.js
24 lines (23 loc) · 906 Bytes
/
index.spec.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
import 'babel-polyfill';
import constructorTest from './index/constructor';
import collapseTest from './index/collapse';
import collapseAllTest from './index/collapseAll';
import getDataTest from './index/getData';
import expandTest from './index/expand';
import expandAllTest from './index/expandAll';
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('collapseAll', collapseAllTest);
describe('getData', getDataTest);
describe('expand', expandTest);
describe('expandAll', expandAllTest);
describe('toggle', toggleTest);
describe('getUniqueValues', getUniqueValuesTest);
describe('filter', filterTest);
describe('update', updateTest);
});