Commit d495c43d authored by Brandon Labuschagne's avatar Brandon Labuschagne

Fix failing pipeline

parent 2f79c06b
...@@ -59,7 +59,7 @@ describe('ProjectsPipelinesChartsApp', () => { ...@@ -59,7 +59,7 @@ describe('ProjectsPipelinesChartsApp', () => {
it('renders with the correct data', () => { it('renders with the correct data', () => {
const charts = wrapper.findAll(PipelinesAreaChart); const charts = wrapper.findAll(PipelinesAreaChart);
for (let i = 0; i < charts.length; i = i + 1) { for (let i = 0; i < charts.length; i += 1) {
const chart = charts.at(i); const chart = charts.at(i);
expect(chart.exists()).toBeTruthy(); expect(chart.exists()).toBeTruthy();
......
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