/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @flow
*/
'use strict';
const FlatList = require('FlatList');
const React = require('react');
function renderMyListItem(info: {item: {title: string}, index: number}) {
return ;
}
module.exports = {
testEverythingIsFine() {
const data = [{
title: 'Title Text',
key: 1,
}];
return ;
},
testBadDataWithTypicalItem() {
// $FlowExpectedError - bad title type 6, should be string
const data = [{
title: 6,
key: 1,
}];
return ;
},
testMissingFieldWithTypicalItem() {
const data = [{
key: 1,
}];
// $FlowExpectedError - missing title
return ;
},
testGoodDataWithBadCustomRenderItemFunction() {
const data = [{
widget: 6,
key: 1,
}];
return (
// $FlowExpectedError - bad widgetCount type 6, should be Object
{info.item.widget.missingProp}
}
data={data}
/>
);
},
testBadRenderItemFunction() {
const data = [{
title: 'foo',
key: 1,
}];
return [
// $FlowExpectedError - title should be inside `item`
} data={data} />,
// $FlowExpectedError - bad index type string, should be number
} data={data} />,
// $FlowExpectedError - bad title type number, should be string
} data={data} />,
// EverythingIsFine
} data={data} />,
];
},
testOtherBadProps() {
return [
// $FlowExpectedError - bad numColumns type "lots"
,
// $FlowExpectedError - bad windowSize type "big"
,
// $FlowExpectedError - missing `data` prop
,
];
},
};