Skip to content
Snippets Groups Projects

Allow (un)following someone in the user popover

1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -296,7 +296,7 @@ describe('User Popover Component', () => {
});
describe('follow actions', () => {
describe('when current user doesnt follow the user', () => {
describe("when current user doesn't follow the user", () => {
beforeEach(() => createWrapper());
it('renders the Follow button with the correct variant', () => {
@@ -398,7 +398,7 @@ describe('User Popover Component', () => {
createWrapper();
});
it('doesnt render the toggle follow button', () => {
it("doesn't render the toggle follow button", () => {
expect(findToggleFollowButton().exists()).toBe(false);
});
});
Loading