Files
redash/client/app/visualizations/table/columns/number.test.js
Arik Fraimovich 56d3be2248 Prettier all the Javascript code & GitHub Action (#4433)
* Prettier all the JS files

* Add GitHub Action to autoformat code pushed to master

* Fix eslint violation due to formatting.

* Remove GitHub actions for styling

* Add restyled.io config
2019-12-11 17:05:38 +02:00

41 lines
866 B
JavaScript

import React from "react";
import enzyme from "enzyme";
import Column from "./number";
function findByTestID(wrapper, testId) {
return wrapper.find(`[data-test="${testId}"]`);
}
function mount(column, done) {
return enzyme.mount(
<Column.Editor
visualizationName="Test"
column={column}
onChange={changedColumn => {
expect(changedColumn).toMatchSnapshot();
done();
}}
/>
);
}
describe("Visualizations -> Table -> Columns -> Number", () => {
describe("Editor", () => {
test("Changes format", done => {
const el = mount(
{
name: "a",
numberFormat: "0[.]0000",
},
done
);
findByTestID(el, "Table.ColumnEditor.Number.Format")
.last()
.find("input")
.simulate("change", { target: { value: "0.00%" } });
});
});
});