Skip to content

Commit cfb6c41

Browse files
committed
Fix the casing of the modulesPath argument; update the readme
1 parent 0445173 commit cfb6c41

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

build/run-testsapp.grunt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = {
88
//Construct and validate the arguments
99
var args = {
1010
platform: grunt.option("platform"),
11-
modulesPath: grunt.option("modulespath"),
11+
modulesPath: grunt.option("modulesPath"),
1212
tnsPath: grunt.option("tnsPath"),
1313
emulatorProcessIdentifier: grunt.option("emuPId"),
1414
emuAvdName: grunt.option("avd"),

running-tests.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ split to a separate file for simplicity.
3535
- `platform`: The platform to run the tests application on: iOS or Android
3636
- `showEmu`: [Optional] Specifies whether the emulator should get launched
3737
in a window or headless mode. Defaults to `false`.
38+
- `modulesPath`: [Optional] The path to the tns-core-modules npm package
39+
to be tested. Defaults to the npm package, located in the current
40+
`bin/dist/` folder. The modules must have been built before that.
3841
- `tnsPath`: [Optional] The path to the NativeScript executable. If not
3942
found, the globally installed `tns` gets called.
4043
- `emuPId`: The ID of the emulator process. This one is used to refresh the

0 commit comments

Comments
 (0)