Hi @AEMWizard ,
To enable JavaScript unit tests for ui.frontend in AEM, you can use Jest.
1.
npm install --save-dev jest
2. Create a configuration file for Jest by creating a jest.config.js file in the root of your project. In this file, you can specify various options for running your tests, su...