@titanium/turbo
Version:
🚀 Turbo is the awesome framework for turbo charging your Titanium cross-platform native mobile app development!
31 lines (27 loc) • 536 B
JavaScript
Ti.include('/runtimeTester.js');
module.exports = function($) {
addMatchers();
describe('index controller', function() {
validateUiComponent($, 'index', {
api: 'Ti.UI.Window',
style: {
backgroundColor: '#fff',
layout: 'vertical',
id: 'index'
}
});
});
describe('index controller', function() {
validateUiComponent($, 'top', {
api: 'Ti.UI.View',
style: {
backgroundColor: 'black',
borderRadius: 2,
borderColor: 'blue',
height: 100,
id: 'top'
}
});
});
launchTests();
};