UNPKG

wft-generate-form

Version:

基于web端xps-formmaking生成的json在uniapp中动态解析

12 lines (11 loc) 406 B
import { UnitTest, assert } from '@ephox/bedrock-client'; import { isValidKey } from 'src/main/ts/Utils'; UnitTest.test('UtilsTest', function () { var checkValidKey = function (key, expected) { var actual = isValidKey(key); assert.eq(expected, actual); }; checkValidKey('onKeyUp', true); checkValidKey('onkeyup', true); checkValidKey('onDisable', false); });