mirror of
https://github.com/apache/superset.git
synced 2026-04-11 04:15:33 +00:00
* adding custom expressions to adhoc metrics * adjusted transitions and made the box expandable * adding adhoc filters * adjusted based on feedback
23 lines
850 B
JavaScript
23 lines
850 B
JavaScript
/* eslint-disable no-unused-expressions */
|
|
import React from 'react';
|
|
import { expect } from 'chai';
|
|
import { describe, it } from 'mocha';
|
|
import { shallow } from 'enzyme';
|
|
|
|
import AdhocMetricStaticOption from '../../../../src/explore/components/AdhocMetricStaticOption';
|
|
import AdhocMetric, { EXPRESSION_TYPES } from '../../../../src/explore/AdhocMetric';
|
|
import { AGGREGATES } from '../../../../src/explore/constants';
|
|
|
|
const sumValueAdhocMetric = new AdhocMetric({
|
|
expressionType: EXPRESSION_TYPES.SIMPLE,
|
|
column: { type: 'VARCHAR(255)', column_name: 'source' },
|
|
aggregate: AGGREGATES.SUM,
|
|
});
|
|
|
|
describe('AdhocMetricStaticOption', () => {
|
|
it('renders the adhoc metrics label', () => {
|
|
const wrapper = shallow(<AdhocMetricStaticOption adhocMetric={sumValueAdhocMetric} />);
|
|
expect(wrapper.text()).to.equal('SUM(source)');
|
|
});
|
|
});
|