Commit 54bd4b4f authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'jivl-fix-bar-char-transient-spec-failure' into 'master'

Fix transient failure from the bar_chart.vue component

Closes gitlab-ee#8062

See merge request gitlab-org/gitlab-ce!22495
parents cad56768 d32abeec
---
title: Fix transient spec error in the bar_chart component
merge_request: 22495
author:
type: fixed
......@@ -71,12 +71,6 @@ describe('Bar chart component', () => {
expect(barChart.xAxisLocation).toEqual('translate(100, 250)');
});
it('Contains a total of 4 ticks across the y axis', () => {
const ticks = barChart.$el.querySelector('.y-axis').querySelectorAll('.tick').length;
expect(ticks).toEqual(4);
});
it('rotates the x axis labels a total of 90 degress (CCW)', () => {
const xAxisLabel = barChart.$el.querySelector('.x-axis').querySelectorAll('text')[0];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment