mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
updating based on last review
This commit is contained in:
parent
51aaecdb94
commit
5d37d20fb8
1 changed files with 10 additions and 2 deletions
|
@ -69,8 +69,16 @@ dataTypesArray.forEach(function (dataType, i) {
|
|||
});
|
||||
});
|
||||
|
||||
it('should stack values', function () {
|
||||
expect(isStacked).to.be(mode === 'stacked' || mode === 'percentage');
|
||||
it('should stack values when mode is stacked', function () {
|
||||
if (mode === 'stacked') {
|
||||
expect(isStacked).to.be(true);
|
||||
}
|
||||
});
|
||||
|
||||
it('should stack values when mode is percentage', function () {
|
||||
if (mode === 'percentage') {
|
||||
expect(isStacked).to.be(true);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue