Install your native toolchain and NativeScript as described in the docs:
https://docs.nativescript.org/setup/quick-setup
$ git clone [email protected]:NativeScript/nativescript-angular.git
$ cd nativescript-angular
$ cd nativescript-angular
$ npm install
Install NPM packages (use the local copy of nativescript-angular
):
$ cd ng-sample
$ npm install
Start the app:
$ tns run android
$ tns run ios
Install the NPM dependencies (use the local copy of nativescript-angular
):
$ cd tests
$ npm install
Run the tests:
$ tns test ios
$ tns test android
NOTE: The steps below describe how to run renderer
tests, but the same approach can be used to run router
or any other e2e
tests.
-
Navigate to
e2e/renderer
cd e2e/renderer
-
Install dependencies. This also installs your local copy of the nativescript-angular plugin.
npm install
-
Make sure to have an emulator set up or connect a physical Android/iOS device.
-
Build the app for Android or iOS
tns run android/ios
-
Install appium globally.
npm install -g appium
-
Follow the instructions in the nativescript-dev-appium plugin to add an appium capability for your device inside
./e2e/renderer/e2e/config/appium.capabilities.json
. -
Run the automated tests. The value of the
runType
argument should match the name of the capability that you just added.npm run e2e -- --runType capabilityName
- Open the
nativescript-angular
folder and start a typescript watcher in ittsc -w
. - Make changes to the
test
,ng-sample
,e2e
app projects or innativescript-angular
folder. - Run the
tests
,ng-sample
ore2e
apps as shown above.