Integrating Unit Tests with Jest in React

Integrating Unit Tests with Jest in React

Tiempo de lectura: 2 minutosToday we are going to learn how we can integrate tests with Jest that allow us to test the React components created. The first thing we have to do is install Jest: npm install –save-dev jest Install testing-library/jest-dom: npm install –save-dev @testing-library/jest-dom We installed ts-jest npm install –save-dev ts-jest We installed: npm install –save-dev babel-jest … Read more

Migrating WordPress from HTTP to HTTPS (SSL/TLS)

Migrating WordPress from HTTP to HTTPS (SSL/TLS)

Tiempo de lectura: 3 minutosThe first thing we are going to do is to install this plugin that will allow us to replace internal links from HTTP to HTTPS: Search for search & replace (https://es.wordpress.org/plugins/search-and-replace/) And install it. Another one I recommend installing is this: (https://es.wordpress.org/plugins/better-search-replace/) Now let’s go to Tools > Search & Replace I recommend making a … Read more

How to Add an Application to Android TV on Google Play

How to Add an Application to Android TV on Google Play

Tiempo de lectura: 2 minutosTo add an app to Android TV using Google Play, we’ll need to create an Android listing as explained in the previous POST (https://devcodelight.com/como-subir-una-app-a-google-play-console/) If we already have an app created, we’ll need to add the Android TV variant. To do this, we open our app and go to Release Here we select Setup > … Read more

Fixing error: Building with plugins requires symlink support. Please enable Developer Mode in your system settings. In Flutter build.

Fixing error: Building with plugins requires symlink support. Please enable Developer Mode in your system settings. In Flutter build.

Tiempo de lectura: < 1 minutoIf you encounter the following error message when using the command: flutter build apk or the command: flutter build appbundle Returns only due to lack of support for symbolic links (symlink) on your system. This problem can arise on operating systems that do not have developer support enabled or when Flutter cannot create symbolic links … Read more

Add Ad Consent Message for European Users — AdMob GDPR with Flutter

Add Ad Consent Message for European Users — AdMob GDPR with Flutter

Tiempo de lectura: 2 minutosToday we are going to learn how to implement the mandatory consent message from Google AdMob, which will be requested from European users by the GDPR or GPDR law or Data Protection who want to view the ads of the APP with AdMob. We are going to use the official AdMob package for Flutter (https://developers.google.com/admob/flutter/eu-consent?hl=en-419) … Read more

Configuring Node HTTP Request to Get, Read and Edit Files in Microsoft 360 with n8n

Configuring Node HTTP Request to Get, Read and Edit Files in Microsoft 360 with n8n

Tiempo de lectura: 2 minutosWe will today see how we can get data from Excel in Microsoft 360 using n8n. First, we will create an app and credentials from https://portal.azure.com/. Login to your Microsoft account. Search: “App registrations” > click on “New registration” We add the application name and select: Accounts in any organizational directory (any Microsoft Entra multi-tenant … Read more