@rachnerd/test-plugin
v0.0.3
Published
Workaround for NativeScript to run unit tests located in source code (Angular style guide)
Downloads
4
Maintainers
Readme
NativeScript tests hook
Workaround for running unit tests located in source code (according to Angular style guide)
Currently NativeScript runs spec files located in app/tests. This hook copies all source code (in app) to a .tmp folder inside app/tests, so NativeScript can run unit tests that follow the Angular style guide.
Example
app
|-- feature
|- feature.component.html
|- feature.component.ts
|- feature.component.spec.ts
Installation
Npm
npm install nativescript-tests-hook --save-dev
Usage
Unfortunately the test runner fetches the files before the hook is finished. To get around this you'll have to prepare before executing the test command.
tns prepare [platform] && tns test [platform]