This commit is contained in:
Panayot Cankov
2016-09-26 13:19:34 +03:00
parent 0e23f47a04
commit 1777ed5f13
2 changed files with 2 additions and 2 deletions

View File

@ -51,6 +51,6 @@
"test-ios": "tns run ios --path tests --justlaunch", "test-ios": "tns run ios --path tests --justlaunch",
"test-watch-android": "npm run pretest && concurrently --kill-others \"npm run tsc-tiw\" \"tns livesync android --path tests --watch\"", "test-watch-android": "npm run pretest && concurrently --kill-others \"npm run tsc-tiw\" \"tns livesync android --path tests --watch\"",
"test-watch-ios": "npm run pretest && concurrently --kill-others \"npm run tsc-tiw\" \"tns livesync ios --path tests --watch\"", "test-watch-ios": "npm run pretest && concurrently --kill-others \"npm run tsc-tiw\" \"tns livesync ios --path tests --watch\"",
"prepublish": "echo \"If you are about to develop run:\nnpm run setup\nFor more information check DevelopmentWorkflow.md\"" "prepublish": "echo \"Development reminder: npm run setup\n\""
} }
} }

View File

@ -254,7 +254,7 @@ export function test_DependencyObservable_get_set_AreOverriden() {
TKUnit.assert(dO.get("test") === true, "DependencyObservable should override Observable.get"); TKUnit.assert(dO.get("test") === true, "DependencyObservable should override Observable.get");
dO.set("test", false); dO.set("test", false);
TKUnit.assert(dO.test === false, "DependencyObservable should override Observable.set"); TKUnit.assert(<any>dO.test === false, "DependencyObservable should override Observable.set");
} }
export function test_DependencyObservable_getValue_setValue() { export function test_DependencyObservable_getValue_setValue() {