Skip to content

Commit d63a73e

Browse files
committed
path fixes
1 parent 1ab561c commit d63a73e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

app.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import application = require("application");
2-
application.mainModule = "./tns_modules/unit-test-runner/main-page";
3-
application.cssFile = "./tns_modules/unit-test-runner/app.css";
2+
application.mainModule = "./tns_modules/nativescript-unit-test-runner/main-page";
3+
application.cssFile = "./tns_modules/nativescript-unit-test-runner/app.css";
44
application.start();

main-page.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Page xmlns="http://www.nativescript.org/tns.xsd" loaded="pageLoaded">
22
<GridLayout cssClass="landingContainer">
3-
<Image src="~/tns_modules/unit-test-runner/nativescript.png" stretch="none" cssClass="landingBackground"/>
3+
<Image src="~/tns_modules/nativescript-unit-test-runner/nativescript.png" stretch="none" cssClass="landingBackground"/>
44

55
<Label text="{{ serverInfo }}" cssClass="landingText"/>
66
</GridLayout>

main-view-model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ export class TestBrokerViewModel extends observable.Observable {
183183
public beginLocalRun() {
184184
this.config = this.config || { args: [] };
185185

186-
frameModule.topmost().navigate('tns_modules/unit-test-runner/test-run-page');
186+
frameModule.topmost().navigate('tns_modules/nativescript-unit-test-runner/test-run-page');
187187
}
188188

189189
public onKarmaExecute(cfg) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-unit-test-runner",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "NativeScript unit test runner component.",
55
"main": "app.js",
66
"scripts": {

test-run-page.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Page xmlns="http://www.nativescript.org/tns.xsd" loaded="pageLoaded">
22
<GridLayout rows="*,auto,8*,auto,auto">
33
<GridLayout row="0" columns="*,auto,*" cssClass="title">
4-
<Image src="~/tns_modules/unit-test-runner/nativescript.png" stretch="aspectFill" col="1"/>
4+
<Image src="~/tns_modules/nativescript-unit-test-runner/nativescript.png" stretch="aspectFill" col="1"/>
55
</GridLayout>
66

77
<Progress row="1" value="{{ testsRan }}" maxValue="{{ testsTotal }}" cssClass="testProgress"/>

0 commit comments

Comments
 (0)