Install your native toolchain and NativeScript as described in the docs:
https://docs.nativescript.org/angular/start/quick-setup
$ git clone [email protected]:NativeScript/nativescript-angular.git
$ cd nativescript-angular
$ cd nativescript-angular
$ npm install
$ cd nativescript-angular-package
$ npm install
Install NPM packages (use the local copy of nativescript-angular
):
$ cd e2e/router-tab-view
$ npm install
Start the app:
$ tns run android
$ tns run ios
Make changes to nativescript-angular
(in ./nativescript-angular-package
folder) or @nativescript/angular
(in ./nativescript-angular
folder) and see them applied in the running app.
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
-
Build
@nativescript/angular
(a.k.a. "scoped package"):cd nativescript-angular npm install npm run pack
-
Build
nativescript-angular
(a.k.a. "compat-package"):cd nativescript-angular-package npm install npm run pack-with-scoped-version -- ../dist/nativescript-angular-scoped.tgz
Packages are available in the dist
folder.