Upgrade prettier before it will be removed forever

This commit is contained in:
SleepWalker
2020-05-20 19:35:52 +03:00
parent 39576c0480
commit 2d903f96fc
108 changed files with 422 additions and 547 deletions

View File

@@ -23,7 +23,7 @@ describe('services/api/options', () => {
});
it('should request options without token', () =>
options.get().then(resp => {
options.get().then((resp) => {
expect(resp, 'to be', expectedResp);
expect(request.get, 'to have a call satisfying', [
'/api/options',
@@ -35,7 +35,7 @@ describe('services/api/options', () => {
it('should cache options', () =>
// NOTE: this is bad practice, but we are relying on the state from
// the previous test
options.get().then(resp => {
options.get().then((resp) => {
expect(resp, 'to be', expectedResp);
expect(request.get, 'was not called');
}));