// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`OuiRangeTrack is rendered 1`] = `
`;
exports[`OuiRangeTrack should throw error if \`max\` does not line up with \`step\` interval 1`] = `"The value of 105 is not included in the possible sequence provided by the step of 10."`;
exports[`OuiRangeTrack should throw error if \`tickInterval\` is off sequence from \`step\` 1`] = `"The value of 3 is not included in the possible sequence provided by the step of 10."`;
exports[`OuiRangeTrack should throw error if custom tick value is higher than \`max\` 1`] = `"The value of 200 is higher than the max value of 100."`;
exports[`OuiRangeTrack should throw error if custom tick value is lower than \`min\` 1`] = `"The value of -100 is lower than the min value of 0."`;
exports[`OuiRangeTrack should throw error if custom tick value is off sequence from \`step\` 1`] = `"The value of 10 is not included in the possible sequence provided by the step of 50."`;
exports[`OuiRangeTrack should throw error if there are too many ticks to render 1`] = `"The number of ticks to render is too high (21), reduce the interval."`;