You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/man_pages/project/testing/test-android.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,14 @@ test android
3
3
4
4
Usage | Synopsis
5
5
------|-------
6
-
General | `$ tns test android [--watch] [--device <Device ID>]`
6
+
General | `$ tns test android [--watch] [--device <Device ID>] [--debug-brk]`
7
7
8
8
Runs the tests in your project on connected Android devices and emulators.
9
9
10
10
### Options
11
11
*`--watch` - If set, when you save changes to the project, changes are automatically synchronized to the connected device and tests are re-run.
12
12
*`--device` - Specifies the serial number or the index of the connected device on which to run the tests. To list all connected devices, grouped by platform, run `$ tns device`
13
+
*`--debug-brk` - Run the tests under the debugger. The debugger will break just before your tests are executed, so you have a chance to place breakpoints.
13
14
14
15
### Attributes
15
16
*`<Device ID>` is the device index or identifier as listed by `$ tns device`
Copy file name to clipboardExpand all lines: docs/man_pages/project/testing/test-ios.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,18 +3,19 @@ test ios
3
3
4
4
Usage | Synopsis
5
5
------|-------
6
-
Run tests on all connected devices | `$ tns test ios [--watch]`
7
-
Run tests on a selected device | `$ tns test ios --device <Device ID> [--watch]`
8
-
Run tests in the iOS Simulator | `$ tns test ios --emulator [--watch]`
6
+
Run tests on all connected devices | `$ tns test ios [--watch] [--debug-brk]`
7
+
Run tests on a selected device | `$ tns test ios --device <Device ID> [--watch] [--debug-brk]`
8
+
Run tests in the iOS Simulator | `$ tns test ios --emulator [--watch] [--debug-brk]`
9
9
10
10
Runs the tests in your project on connected iOS devices or the iOS Simulator.
11
11
12
12
### Options
13
13
*`--watch` - If set, when you save changes to the project, changes are automatically synchronized to the connected device and tests are re-ran.
14
14
*`--device` - Specifies the serial number or the index of the connected device on which you want to run tests. To list all connected devices, grouped by platform, run `$ tns device`. You cannot set `--device` and `--emulator` simultaneously.
15
15
*`--emulator` - Runs tests on the iOS Simulator. You cannot set `--device` and `--emulator` simultaneously.
16
+
*`--debug-brk` - Run the tests under the debugger. The debugger will break just before your tests are executed, so you have a chance to place breakpoints.
0 commit comments