mirror of
https://github.com/apache/superset.git
synced 2026-04-09 19:35:21 +00:00
31 lines
1.2 KiB
JavaScript
31 lines
1.2 KiB
JavaScript
/* eslint-disable no-unused-expressions */
|
|
import React from 'react';
|
|
import { expect } from 'chai';
|
|
import { describe, it } from 'mocha';
|
|
import { shallow } from 'enzyme';
|
|
|
|
import MetricDefinitionValue from '../../../../src/explore/components/MetricDefinitionValue';
|
|
import MetricOption from '../../../../src/components/MetricOption';
|
|
import AdhocMetricOption from '../../../../src/explore/components/AdhocMetricOption';
|
|
import AdhocMetric from '../../../../src/explore/AdhocMetric';
|
|
import { AGGREGATES } from '../../../../src/explore/constants';
|
|
|
|
const sumValueAdhocMetric = new AdhocMetric({
|
|
column: { type: 'DOUBLE', column_name: 'value' },
|
|
aggregate: AGGREGATES.SUM,
|
|
});
|
|
|
|
describe('MetricDefinitionValue', () => {
|
|
it('renders a MetricOption given a saved metric', () => {
|
|
const wrapper = shallow(<MetricDefinitionValue option={{ metric_name: 'a_saved_metric' }} />);
|
|
expect(wrapper.find(MetricOption)).to.have.lengthOf(1);
|
|
});
|
|
|
|
it('renders an AdhocMetricOption given an adhoc metric', () => {
|
|
const wrapper = shallow((
|
|
<MetricDefinitionValue onMetricEdit={() => {}} option={sumValueAdhocMetric} />
|
|
));
|
|
expect(wrapper.find(AdhocMetricOption)).to.have.lengthOf(1);
|
|
});
|
|
});
|