Fix styles import order

This commit is contained in:
Alejandro Celaya
2023-08-07 23:06:29 +02:00
parent 8decceaa38
commit 74aaed65b6
3 changed files with 6 additions and 6 deletions

View File

@@ -61,7 +61,7 @@ describe('HttpClient', () => {
const theError = { error: true, foo: 'bar' };
fetch.mockResolvedValue({ json: () => theError, ok: false });
await expect(httpClient.fetchJson('')).rejects.toEqual(theError);
await expect(httpClient.fetchEmpty('')).rejects.toEqual(theError);
});
});
});