@titanium/turbo
Version:
<p align="center"> <img src="https://cdn.secure-api.org/images/turbo-title_400.png" /><br> <a href="https://www.npmjs.com/package/@titanium/turbo"> <img src="https://img.shields.io/npm/v/@titanium/turbo.png" /> </a> </p>
29 lines (26 loc) • 541 B
JavaScript
Ti.include('/runtimeTester.js');
module.exports = function($) {
addMatchers();
describe('item controller', function() {
validateUiComponent($, 'item', {
api: 'Ti.UI.View',
style: {
backgroundColor: '#00f',
id: 'item'
}
});
validateUiComponent($, 'label', {
api: 'Ti.UI.Label',
style: {
color: '#f00',
font: {
fontSize: OS_MOBILEWEB ? '24px' : 24,
fontWeight: 'bold'
},
textAlign: 'center',
text: 'should be bold, red text on blue background',
id: 'label'
}
});
});
};