[react-pacakger] Fix failing test

Summary:
Fix failing test that matches the exact error string to match using `contains`.

I was under the impression that jest tests were running in CI -- turns out not yet.
This commit is contained in:
Amjad Masad 2015-08-31 13:19:05 -07:00
Родитель 94ae886060
Коммит d87480e9ac
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -107,6 +107,6 @@ describe('SocketClient', () => {
data: 'some error' data: 'some error'
}); });
return promise.catch(m => expect(m.message).toBe('some error')); return promise.catch(m => expect(m.message).toContain('some error'));
}); });
}); });