@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>
27 lines (24 loc) • 459 B
JavaScript
Ti.include('/runtimeTester.js');
module.exports = function($) {
addMatchers();
describe('bottom controller', function() {
validateUiComponent($, 'bottom', {
api: 'Ti.UI.View',
style: {
id: 'bottom'
}
});
});
describe('bottom controller', function() {
validateUiComponent($, 'b', {
api: 'Ti.UI.Button',
style: {
width: Ti.UI.SIZE,
height: Ti.UI.SIZE,
title: 'Click me',
bottom: 20,
id: 'b'
}
});
});
};