Getting started with testing Vue UI components in the Vitest project

3 Aug 20237 minutes to read

This article provides a step-by-step guide for setting up a Vitest project, integrating Syncfusion Vue components, and perform comprehensive testing of the components.

Vitest is a blazing fast unit test framework powered by Vite that makes it easy to write and run tests for your Vue.js components. It is designed to be fast, easy to use, and compatible with Jest.

Prerequisites

System requirements for Syncfusion Vue UI components

Set up the Vitest project

To initiate the creation of a new Vitest project, use the following create vue command.

npm create vue@latest

Using the above commands will lead you to set up additional configurations for the project:

1. Define the project name: We can specify the name of the project directly. Let’s specify the name of the project as my-project for this article.

Vue.js - The Progressive JavaScript Framework

√ Project name: ... my-project

2. To enable unit testing (Vitest) and configure the project, set the Vitest configuration to Yes.

√ Add TypeScript? ... No
√ Add JSX Support? ... No
√ Add Vue Router for Single Page Application development? ... No
√ Add Pinia for state management? ... No
√ Add Vitest for Unit Testing? ... Yes
√ Add an End-to-End Testing Solution? » No
√ Add ESLint for code quality? ... No

3. Upon completing the aforementioned steps to create my-project, run the following command to install its dependencies:

cd my-project
npm install

4. The default setup of Vitest utilizes JSDOM, which may not fully support all the APIs available in the window object. However, Syncfusion Vue components rely on certain APIs of the window object internally. Therefore, in order to ensure compatibility, it is necessary to configure Vitest with happy-dom. To install it, execute the following command:

npm i happy-dom --save-dev

5. To add the happy-dom environment in the vitest.config.js file, replace the existing JSDOM value in the environment option with happy-dom. This will ensure that the happy-dom environment is used for your Vitest project.

test: {
  environment: 'happy-dom'
}

Now that my-project is ready to run with default settings, let’s add Syncfusion components to the project.

Add the Syncfusion packages

Syncfusion Vue component packages are available at npmjs.com. To use Syncfusion Vue components in the project, install the corresponding npm package.

This article uses the Vue Grid component as an example. To use the Vue Grid component in the project, the @syncfusion/ej2-vue-grids package needs to be installed using the following command:

npm install @syncfusion/ej2-vue-grids --save

Add the Syncfusion Vue component

Follow the below steps to add the Vue Grid component:

1. First, define the Grid component with the dataSource property and column definitions in the src/components/HelloWorld.vue file.

<template>
  <ejs-grid :dataSource="data">
    <e-columns>
      <e-column field='OrderID'></e-column>
      <e-column field='CustomerID'></e-column>
      <e-column field='EmployeeID'></e-column>
      <e-column field='ShipCountry'></e-column>
      <e-column field='Freight'></e-column>
    </e-columns>
  </ejs-grid>
</template>

<script>
import { GridComponent, ColumnsDirective, ColumnDirective } from '@syncfusion/ej2-vue-grids';

export default {
  components: {
    'ejs-grid': GridComponent,
    'e-columns': ColumnsDirective,
    'e-column': ColumnDirective
  },
  data() {
    return {
      data: [
        {
          OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, ShipCountry: 'France', Freight: 32.38
        },
        {
          OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, ShipCountry: 'Germany', Freight: 11.61
        },
        {
          OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, ShipCountry: 'Brazil', Freight: 65.83
        }
      ]
    }
  }
};
</script>

2. Next, add the unit testing cases for the component using the Vitest framework in the src/components/tests/HelloWorld.spec.js file.

import { describe, it, expect, vi } from 'vitest'
import { mount } from '@vue/test-utils'
import HelloWorld from '../HelloWorld.vue'

describe('EJSGrid', () => {
  it('Rows render correctly', async () => {

    window.crypto = vi.fn();
    window.crypto.getRandomValues = vi.fn();

    const wrapper = mount(HelloWorld);

    // Wait untill the component mount completely
    await new Promise((res) => setTimeout(res, 50))
    
    const rows = wrapper.findAll('.e-row');
    expect(rows.length).toBe(wrapper.vm.data.length);
    
    wrapper.unmount();
  });

  it('Columns render correctly', async () => {

    window.crypto = vi.fn();
    window.crypto.getRandomValues = vi.fn();

    const wrapper = mount(HelloWorld);

    // Wait untill the component mount completely
    await new Promise((res) => setTimeout(res, 50))
    
    const colHeader = wrapper.findAll('.e-headertext');

    for (let i = 0; i < Object.keys(wrapper.vm.data[0]).length; i++ ) {
      expect(colHeader[i].element.innerText).toBe(Object.keys(wrapper.vm.data[0])[i]);
    }

    wrapper.unmount();
  });
});

Run the project

To run the project, use the following command:

npm run test:unit

The output will appear as follows:

 DEV  v0.31.4 D:/Testing/vitest

 ✓ src/components/__tests__/HelloWorld.spec.js (2)

 Test Files  1 passed (1)
      Tests  2 passed (2)
   Start at  13:06:12
   Duration  3.05s (transform 126ms, setup 0ms, collect 1.80s, tests 221ms, environment 602ms, prepare 130ms)


 PASS  Waiting for file changes...
 press h to show help, press q to quit