antoniogiroz / testing-web-components

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

testing-web-components

This project showcases the issues faced while testing web components using vue-test-utils and the vue-testing-library, and how it works by using e2e tests with Playwright.

The BaseDropdown component, which acts as a wrapper for a web component from the Shoelace library, is only tested by one unit test. The test tries to access the menu items through their attribute role, but it fails as the shadow DOM content is not rendered.

However, the e2e tests conducted with Playwright work efficiently, enabling easy access to the dropdown button and the menu through the getByRole function.

Project Setup

pnpm install

Run unit tests

pnpm test:unit

Run e2e tests

You need to install the Playwright browsers to run the e2e tests.

npx playwright install
pnpm test:e2e:ci

About


Languages

Language:TypeScript 76.2%Language:Vue 13.6%Language:HTML 5.3%Language:CSS 3.9%Language:JavaScript 1.1%