Hi,
we cannot get out test running after replacing our previous controls through to Syncfusion controls.
Please check the example. We already mocked missing functions but minifying makes all debugging almost impossible.
input.spec.ts
import { mount } from '@vue/test-utils'
import input from '../../../../src/components/input.vue'
describe('input', () => {
it('Get initial value from formStore', async () => {
Object.defineProperty(window, 'crypto', {
value: { getRandomValues: jest.fn().mockReturnValueOnce(new Uint32Array(10)) }
})
const wrapper = mount(input, {
})
})
})
input.vue
<template>
<TextBoxComponent
floatLabelType="Auto"/>
</template>
<script setup lang="ts">
import { TextBoxComponent } from '@syncfusion/ej2-vue-inputs'
</script>

I have simplified my example above.