@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>
28 lines (24 loc) • 456 B
JavaScript
Ti.include('/runtimeTester.js');
module.exports = function($) {
addMatchers();
describe('index controller', function() {
validateUiComponent($, 'index', {
api: 'Ti.UI.Window',
style: {
id: 'index',
backgroundColor: '#fff'
}
});
validateUiComponent($, 'b', {
api: 'Ti.UI.Button',
style: {
width: '50%',
height: Ti.UI.SIZE,
randomProp: 'OK',
title: 'click me',
id: 'b'
}
});
});
launchTests();
};