[Component templates] Unskip form payload component integration test (#120756) (#120801)

This commit is contained in:
Sébastien Loix 2021-12-08 18:54:20 +00:00 committed by GitHub
parent 5b04d2b064
commit 612a3414d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,13 +74,15 @@ describe('<ComponentTemplateEdit />', () => {
expect(nameInput.props().disabled).toEqual(true);
});
// FLAKY: https://github.com/elastic/kibana/issues/84906
describe.skip('form payload', () => {
describe('form payload', () => {
it('should send the correct payload with changed values', async () => {
const { actions, component, form } = testBed;
await act(async () => {
form.setInputValue('versionField.input', '1');
});
await act(async () => {
actions.clickNextButton();
});