Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 482 Bytes

RunTests.md

File metadata and controls

22 lines (20 loc) · 482 Bytes

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();
	} 
});