summaryrefslogtreecommitdiff
path: root/spec/frontend/helpers/keep_alive_component_helper_spec.js
blob: dcccc14f396fdb3deae2aa86403690e65f4147fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { mount } from '@vue/test-utils';
import { keepAlive } from './keep_alive_component_helper';

const component = {
  template: '<div>Test Component</div>',
};

describe('keepAlive', () => {
  let wrapper;

  beforeEach(() => {
    wrapper = mount(keepAlive(component));
  });

  afterEach(() => {
    wrapper.destroy();
  });

  it('converts a component to a keep-alive component', async () => {
    const { element } = wrapper.find(component);

    await wrapper.vm.deactivate();
    expect(wrapper.find(component).exists()).toBe(false);

    await wrapper.vm.activate();

    // assert that when the component is destroyed and re-rendered, the
    // newly rendered component has the reference to the old component
    // (i.e. the old component was deactivated and activated)
    expect(wrapper.find(component).element).toBe(element);
  });
});