1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-26 05:05:27 +00:00
notes/node_modules/table/test/calculateRowHeightIndex.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

79 lines
1.7 KiB
JavaScript

/* eslint-disable max-nested-callbacks */
import {
expect
} from 'chai';
import calculateRowHeightIndex from './../src/calculateRowHeightIndex';
describe('calculateRowHeightIndex', () => {
context('single column', () => {
context('cell content width is lesser than column width', () => {
it('is equal to 1', () => {
const data = [
[
'aaa'
]
];
const config = {
columns: {
0: {
width: 10,
wrapWord: false
}
}
};
const rowSpanIndex = calculateRowHeightIndex(data, config);
expect(rowSpanIndex[0]).to.equal(1);
});
});
context('cell content width is twice the size of the column width', () => {
it('is equal to 2', () => {
const data = [
[
'aaabbb'
]
];
const config = {
columns: {
0: {
width: 3,
wrapWord: false
}
}
};
const rowSpanIndex = calculateRowHeightIndex(data, config);
expect(rowSpanIndex[0]).to.equal(2);
});
});
});
context('multiple columns', () => {
context('multiple cell content width is greater than the column width', () => {
it('uses the largest height', () => {
const data = [
['aaabbb'],
['aaabbb']
];
const config = {
columns: {
0: {
width: 2,
wrapWord: false
}
}
};
const rowSpanIndex = calculateRowHeightIndex(data, config);
expect(rowSpanIndex[0]).to.equal(3);
});
});
});
});