mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
Fix ===
This commit is contained in:
@ -51,6 +51,6 @@
|
||||
"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-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\""
|
||||
}
|
||||
}
|
||||
|
@ -254,7 +254,7 @@ export function test_DependencyObservable_get_set_AreOverriden() {
|
||||
TKUnit.assert(dO.get("test") === true, "DependencyObservable should override Observable.get");
|
||||
|
||||
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() {
|
||||
|
Reference in New Issue
Block a user