Files
Panayot Cankov 6d43f4dcbc Merge pull request #1200 from NativeScript/cankov/background-native-image-recreated
Fix native image recreated on layout even if the view is not resized
2015-12-04 10:56:01 +02:00
..
2015-04-07 14:10:34 +03:00
2015-03-03 10:34:40 +02:00
2015-03-03 10:34:40 +02:00
2015-09-01 21:39:27 +10: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-11-25 13:53: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-09-30 14:37:40 +03:00
2015-03-03 10:34:40 +02:00
2015-10-14 17:40:14 +03:00
2015-10-29 15:01:08 +02: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();
	} 
});