Commit df844c4d authored by Vitaly Slobodin's avatar Vitaly Slobodin

Migrate ee/filtered_search to Jest

Closes https://gitlab.com/gitlab-org/gitlab/-/issues/194285
parent c943774f
...@@ -28,7 +28,7 @@ describe('Issues Filtered Search Token Keys (EE)', () => { ...@@ -28,7 +28,7 @@ describe('Issues Filtered Search Token Keys (EE)', () => {
it('should return assignee as an array', () => { it('should return assignee as an array', () => {
const assignee = tokenKeys.find(tokenKey => tokenKey.key === 'assignee'); const assignee = tokenKeys.find(tokenKey => tokenKey.key === 'assignee');
expect(assignee.type).toEqual('array'); expect(assignee.type).toBe('array');
}); });
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment