Prettier fix for line length

This commit is contained in:
Harvey
2020-10-26 09:49:54 -04:00
parent 5010bf5fe0
commit 2e04225056
4 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -285,7 +285,7 @@ jest.mock('./MyApi'); // Instruct Jest to swap all future imports of './MyApi.js
import MyApi from './MyApi'; // Will actually return the contents of the file in the __mocks__ folder now
it ('loads data', (done) => {
it('loads data', done => {
MyApi.fetchSomethingFromServer().then(result => {
expect(result).toBe('some result object simulating server data here');
done();