Winter ’22 release is here, and with it, new GA features that developers can use today, as well as developer preview, beta and pilots that you can try out. Last week I gave a talk to the Amsterdam Developer Group in which I went over all these features, explaining what they’re about, how to try them out, and where to find more information.
Continue reading “Winter ’22 Highlights for Salesforce Developers”Automated Accessibility Tests with sa11y
Accessibility in today’s world is a must! Thus, in the past weeks I’ve spent some time implementing automated tests that check for accessibility issues in Sample Gallery apps. To check for accessibility issues I’ve used sa11y, a set of open source JavaScript libraries that detects machine knowable accessibility issues and that can be used with Jest, WebdriverIO or just generic JavaScript.
Continue reading “Automated Accessibility Tests with sa11y”Tests Unitarios para LWC === Calidad! [ESP]
Los test unitarios son un must para conseguir un código mantenible, blindado frente a errores y fácil de depurar. En definitiva aplicaciones de CALIDAD.
Continue reading “Tests Unitarios para LWC === Calidad! [ESP]”Unit testing aura components with Lightning Testing Service and Mocha
When thinking about good quality software we must always have very present that tests automation is a must. There is a full list of tiers and tools that can be used to ensure that your software behaves as expected, bugs typically introduced by refactoring are prevented, and interconnected systems behave well together, as for example your code together with a Salesforce upgrade. In this post I want to focus on how to write unit tests for Lightning Components using Lightning Testing Service (LTS).
Continue reading “Unit testing aura components with Lightning Testing Service and Mocha”Unit testing Lightning Connect Apps
This month I had the pleasure of presenting at London’s Calling event an application I have done for learning how to use Lightning Connect to retrieve data from an external datasource, which in my case is Google Places API. If you want to know more about the application, here is the video of the presentation.
In the Q&A I had a question about Unit test, that at the moment I couldn’t shown. That question encouraged me to do some unit tests! So, here we have the results.