Skip to content

Commit

Permalink
fix visual baseline tests
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed May 21, 2020
1 parent ffe7341 commit 35db370
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/visual_regression/tests/discover/chart_visualization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,18 @@ export default function({ getService, getPageObjects }: FtrProviderContext) {
await takeSnapshot();
});

it('should show correct data for chart interval Hourly', async function() {
await PageObjects.discover.setChartInterval('Hourly');
it('should show correct data for chart interval Hour', async function() {
await PageObjects.discover.setChartInterval('Hour');
await takeSnapshot();
});

it('should show correct data for chart interval Daily', async function() {
await PageObjects.discover.setChartInterval('Daily');
it('should show correct data for chart interval Day', async function() {
await PageObjects.discover.setChartInterval('Day');
await takeSnapshot();
});

it('should show correct data for chart interval Weekly', async function() {
await PageObjects.discover.setChartInterval('Weekly');
it('should show correct data for chart interval Week', async function() {
await PageObjects.discover.setChartInterval('Week');
await takeSnapshot();
});

Expand Down

0 comments on commit 35db370

Please sign in to comment.