Вот ситуация, у меня есть компонент реагирования, который захватывает все записи с помощью подкачки в componentetDidUpdate.Код функционирует как задумано, но я не могу заставить операторы ожидания ожидать завершения всех асинхронных операций.
Код компонента
async componentDidUpdate(prevProps) {
if (this.props !== prevProps) {
console.log('Componet did update called');
//File ids are grabbed else where and the are populating correctly
const batchSize = 50;
for (let idx = 0; idx < fileIds.length; idx += batchSize) {
const returnedFiles = await getFileVitals(fileIds.slice(idx, idx + batchSize));
this.doWork(returnedFiles, fileRefs);
this.setState({
filesToDisplay: this.files,
title: Name,
description: Description,
});
}
}
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.5.0/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.5.0/umd/react-dom.production.min.js"></script>
Вот шутник, который не прошел
//DTCQ is where the data serice is implemented
jest.unmock('../../dtcq');
beforeAll(() => {
dataReaders.getFileVitals = jest.fn();
dataReaders.getFileVitals.mockReturnValue(mockData);
});
test.only('Component renders proper number of file lines if hiding single revisions.', async () => {
console.log('Running component render proper number 30');
const component = mount(<CustomizeTemplate pkg={data.Package} files={data.Files} hideSingleRevisions featureSet={features} buildClicked={jest.fn()} />);
component.setProps({ featureSet: 'p' });
component.update();
console.log('*****Expect Processed');
// Check that there are 30 file lines, as there are more if not hiding single revisions.
await expect(component.find('file-lines').children().length).toEqual(30);
});
Что такое шутливый способ сделать это.Я прочитал их асинхронные документы и не видел ни одного примера, выполняющего этот тип операции.