summaryrefslogtreecommitdiff
path: root/spec/frontend/filtered_search
diff options
context:
space:
mode:
authorWinnie Hellmann <winnie@gitlab.com>2019-04-08 19:20:40 +0200
committerWinnie Hellmann <winnie@gitlab.com>2019-04-09 09:16:59 +0200
commitcb892da622820505637bafc39c0c0688300a6dc7 (patch)
tree292f67214a2afac13347e6b92219ac8fcafc149f /spec/frontend/filtered_search
parentb28ba16a1eeb3f6437f282eafc15ea963c82bdf3 (diff)
downloadgitlab-ce-cb892da622820505637bafc39c0c0688300a6dc7.tar.gz
Run yarn eslint --fix
Diffstat (limited to 'spec/frontend/filtered_search')
-rw-r--r--spec/frontend/filtered_search/services/recent_searches_service_error_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/frontend/filtered_search/services/recent_searches_service_error_spec.js b/spec/frontend/filtered_search/services/recent_searches_service_error_spec.js
index ea7c146fa4f..0e62bc94517 100644
--- a/spec/frontend/filtered_search/services/recent_searches_service_error_spec.js
+++ b/spec/frontend/filtered_search/services/recent_searches_service_error_spec.js
@@ -8,7 +8,7 @@ describe('RecentSearchesServiceError', () => {
});
it('instantiates an instance of RecentSearchesServiceError and not an Error', () => {
- expect(recentSearchesServiceError).toEqual(jasmine.any(RecentSearchesServiceError));
+ expect(recentSearchesServiceError).toEqual(expect.any(RecentSearchesServiceError));
expect(recentSearchesServiceError.name).toBe('RecentSearchesServiceError');
});