mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[TSVB] Remove temporary fix for Borealis in TSVB test (#212050)
## Summary Fixes a workaround implemented in the TSVB functional tests to cover a flaky test that wasn't possible to solve locally.
This commit is contained in:
parent
6f831770fd
commit
d6afbe9675
1 changed files with 2 additions and 2 deletions
|
@ -311,8 +311,8 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
|
|||
// We need to use OR condition here because of how visColors are set inconsistently
|
||||
// See https://github.com/elastic/kibana/issues/206380
|
||||
const [firstColor, secondColor] = areaColors!;
|
||||
expect(['#16c5c0', '#54b399']).contain(firstColor); // first color in elastic palette
|
||||
expect(['#a6edea', '#6092c0']).contain(secondColor); // second color in elastic palette
|
||||
expect(firstColor).to.be('#16c5c0'); // first color in elastic palette
|
||||
expect(secondColor).to.be('#a6edea'); // second color in elastic palette
|
||||
expect(areaColors).to.length(2);
|
||||
expect(firstAreaChartData).to.eql(firstAreaExpectedChartData);
|
||||
expect(secondAreaChartData).to.eql(secondAreaExpectedChartData);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue