@titanium/turbo
Version:
🚀 Turbo is the awesome framework for turbo charging your Titanium cross-platform native mobile app development!
23 lines (20 loc) • 393 B
JavaScript
Ti.include('/runtimeTester.js');
module.exports = function($) {
addMatchers();
describe('window controller', function() {
validateUiComponent($, 'leftButton', {
api: 'Ti.UI.Button',
style: {
title: 'left',
id: 'leftButton'
}
});
validateUiComponent($, 'rightButton', {
api: 'Ti.UI.Button',
style: {
title: 'right',
id: 'rightButton'
}
});
});
};