From 87bc3df863b82b5cc7bb12106cfae051b9bf7740 Mon Sep 17 00:00:00 2001 From: fatme Date: Mon, 21 Jan 2019 14:22:39 +0200 Subject: [PATCH] fix: respect nsconfig file on `tns test` command Rel to: NativeScript/nativescript-angular#1310 NativeScript/nativescript-cli#4244 --- lib/services/test-execution-service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/services/test-execution-service.ts b/lib/services/test-execution-service.ts index c081d1d1bd..4d33f38ae5 100644 --- a/lib/services/test-execution-service.ts +++ b/lib/services/test-execution-service.ts @@ -332,7 +332,8 @@ class TestExecutionService implements ITestExecutionService { options: { debugTransport: this.$options.debugTransport, debugBrk: this.$options.debugBrk, - watch: !!this.$options.watch + watch: !!this.$options.watch, + appDirectoryRelativePath: projectData.getAppDirectoryRelativePath() } }, };