Commit d619ede5 authored by jboyson's avatar jboyson

Replace find with findComponent

Relates to: https://gitlab.com/gitlab-org/gitlab/-/issues/295679

Changelog: other
parent 6b180506
......@@ -48,8 +48,8 @@ describe('ApproversColumn component', () => {
if (wrapper) wrapper.destroy();
});
const findAvatar = () => wrapper.find(GlAvatarLink);
const findInlineAvatars = () => wrapper.find(GlAvatarsInline);
const findAvatar = () => wrapper.findComponent(GlAvatarLink);
const findInlineAvatars = () => wrapper.findComponent(GlAvatarsInline);
describe('when an empty list approvers is passed', () => {
beforeEach(() => {
......
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