Files
NativeScript/apps/tests
hshristov 3a0cc32ff2 Fix for Button padding in android.
Fix for types - isString and isNumber.
Modified several tests to pass on VS Emulator for Android.
Fix page background to be applied in onLoaded method.
Enhancements for dependency-observable - it is now possible to add defaultValueGetter function to extract default value for a property. It can also be cached or not.
Remove android_constants because they are per theme and we cannot use them safely.
Fix for SearchBar reseColorProperty method.
2015-08-28 16:59:52 +03:00
..
2015-08-28 12:55:28 +03:00
2015-04-07 14:10:34 +03:00
2015-08-03 13:49:18 +03:00
2015-08-28 16:59:52 +03:00
2015-03-24 16:05:54 +02:00
2015-08-28 16:59:52 +03:00
2015-03-03 10:34:40 +02:00
2015-03-03 10:34:40 +02:00
2015-03-03 10:34:40 +02:00
2015-07-30 09:56:24 +03:00
2015-03-03 10:34:40 +02:00
2015-03-24 16:05:54 +02:00
2015-07-20 14:42:29 +03:00
2015-03-03 10:34:40 +02:00
2015-05-11 11:33:09 +03:00
2015-03-24 16:05:54 +02:00
2015-03-03 10:34:40 +02:00
2015-03-03 10:34:40 +02:00
2015-03-03 10:34:40 +02:00
2015-03-26 17:32:25 +02:00
2015-07-29 15:24:43 +03:00
2015-05-18 12:11:43 +03:00
2015-03-03 10:34:40 +02:00
2015-04-22 16:08:55 +03:00
2015-05-15 18:46:24 +03:00

To run tests please build using one of the *_Tests build configurations and call runAll() method of the Tests module. For example:

##iOS

var app = require("application");
app.init(null);
var tests = require("Tests");
tests.runAll();

##Android

app.init({
	getActivity: function(intent) {
		return com.tns.NativeScriptActivity.extend({});
	},
	onCreate: function() {
		require("application").init(this);
		require("Tests").runAll();
	} 
});