UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

13 lines 339 B
import * as d3Scale from 'd3-scale'; import { common } from '../../util/generic-tests'; import Axis from './Axis'; describe('Axis', function () { common(Axis, { exemptFunctionProps: ['scale', 'tickFormat'], getDefaultProps: function getDefaultProps() { return { scale: d3Scale.scaleLinear() }; } }); });