Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
updated wdio snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
sdadn committed Apr 5, 2024
1 parent aed4182 commit eeaae06
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 3 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ Terra.describeViewports('General', ['tiny', 'medium', 'large'], () => {
browser.url('/raw/tests/cerner-terra-graphs-docs/graphs/general/axes/allow-calibration-disabled-x-axis');
Terra.validates.screenshot('x-axis_allowcalibration_disabled', { selector: '.carbon-graph-container' });
});
it('validates y-axis allowCalibration disabled graph container', () => {
browser.url('/raw/tests/cerner-terra-graphs-docs/graphs/general/axes/allow-calibration-disabled-y-axis');
Terra.validates.screenshot('y-axis_allowcalibration_disabled', { selector: '.carbon-graph-container' });
it('validates y-axis allowCalibration graphs', () => {
browser.url('/raw/tests/cerner-terra-graphs-docs/graphs/general/allow-calibration');
Terra.validates.screenshot('y-axis_allowcalibration_disabled', { selector: '#allow-calibration-examples' });
});

it('validates timeseries x-axis allowCalibration enabled graph container', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from 'react';
import AllowCalibrationDisabled from '../../../graph/CoreConfiguration.b/examples/AllowCalibrationDisabled';
import AllowCalibrationEnabled from '../../../graph/CoreConfiguration.b/examples/AllowCalibrationEnabled';

export default () => (
<div id="allow-calibration-examples">
<h3>allowCalibration Disabled</h3>
<AllowCalibrationDisabled />

<h3>allowCalibration Enabled</h3>
<AllowCalibrationEnabled />
</div>
);

0 comments on commit eeaae06

Please sign in to comment.