mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 12:52:12 +08:00

* update eslint, tsconfig + esbuild to handle new jsx transform * remove thing that breaks the new jsx transform * remove react imports * adjust grafana-icons build * is this the correct syntax? * try this * well this was much easier than expected... * change grafana-plugin-configs webpack config * fixes * fix lockfile * fix 2 more violations * use path.resolve instead of require.resolve * remove react import * fix react imports * more fixes * remove React import * remove import React from docs * remove another react import
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import { fireEvent, render, screen } from '@testing-library/react';
|
|
import { selectOptionInTest } from 'test/helpers/selectOptionInTest';
|
|
|
|
import { toDataFrame, FieldType } from '@grafana/data';
|
|
|
|
import { Props, ConfigFromQueryTransformerEditor } from './ConfigFromQueryTransformerEditor';
|
|
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
const input = toDataFrame({
|
|
fields: [
|
|
{ name: 'Name', type: FieldType.string, values: ['Temperature', 'Pressure'] },
|
|
{ name: 'Value', type: FieldType.number, values: [10, 200] },
|
|
{ name: 'Unit', type: FieldType.string, values: ['degree', 'pressurebar'] },
|
|
{ name: 'Miiin', type: FieldType.number, values: [3, 100] },
|
|
{ name: 'max', type: FieldType.string, values: [15, 200] },
|
|
],
|
|
refId: 'A',
|
|
});
|
|
|
|
const mockOnChange = jest.fn();
|
|
|
|
const props: Props = {
|
|
input: [input],
|
|
onChange: mockOnChange,
|
|
options: {
|
|
mappings: [],
|
|
},
|
|
};
|
|
|
|
const setup = (testProps?: Partial<Props>) => {
|
|
const editorProps = { ...props, ...testProps };
|
|
return render(<ConfigFromQueryTransformerEditor {...editorProps} />);
|
|
};
|
|
|
|
describe('ConfigFromQueryTransformerEditor', () => {
|
|
it('Should be able to select config frame by refId', async () => {
|
|
setup();
|
|
|
|
let select = (await screen.findByText('Config query')).nextSibling!.firstChild!;
|
|
await fireEvent.keyDown(select, { keyCode: 40 });
|
|
await selectOptionInTest(select as HTMLElement, 'A');
|
|
|
|
expect(mockOnChange).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
configRefId: 'A',
|
|
})
|
|
);
|
|
});
|
|
});
|