React Jest Async Тесты - PullRequest
       7

React Jest Async Тесты

0 голосов
/ 10 декабря 2018

Вот ситуация, у меня есть компонент реагирования, который захватывает все записи с помощью подкачки в 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);
});

Что такое шутливый способ сделать это.Я прочитал их асинхронные документы и не видел ни одного примера, выполняющего этот тип операции.

1 Ответ

0 голосов
/ 11 декабря 2018

В тестах должно быть обещание цепочки.Это лучше всего работает с Enzyme disableLifecycleMethods option :

const component = mount(..., { disableLifecycleMethods: true });
const props = component.props();
component.setProps({ featureSet: 'p' });
await component.instance().componentDidUpdate(props);
...
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...