(paramName, fieldName, value)
| 97 | } |
| 98 | |
| 99 | async function setValue(paramName, fieldName, value) { |
| 100 | let paramItem = findParamItem(paramName); |
| 101 | expect(paramItem).not.toBeNil() |
| 102 | |
| 103 | const paramForm = paramItem.$children[0]; |
| 104 | await setValueByUser(paramForm, fieldName, value) |
| 105 | } |
| 106 | |
| 107 | describe('Test visualisation', function () { |
| 108 | it('Test show parameters list', async function () { |
no test coverage detected