[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
parent 26a028e98d
commit c980942899
1 changed files with 1 additions and 1 deletions

View File

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