Posts
All the articles I've posted.
-
How to set up unit testing in NativeScript Vue
Learn how to set up unit testing in NativeScript Vue using Jest and Vue Test Utils when the Vue way doesn't work out of the box.
-
Creating a Share Extension in NativeScript
Share extensions are a type of app extension in iOS that extend functionality to your app. Learn how to create a share extension in NativeScript.
-
Nativescript-vue Appium error - pid argument must be of type number
After setting up Appium and Nativescript-dev-appium for end-to-end testing in your Nativescript app, you may encounter this error when running your tests for the first time
-
Removing duplicates from an array in ES6 Javascript
ES6 introduces a new type of Set object that stores unique values. This is very useful if you want to get only unique values from an array, similar to Ruby's uniq method.