Git Product home page Git Product logo

dom-preview's Introduction

dom-preview

This README is generated via ./scripts/build-readme.js

Introduction

vitest-preview is a great help for debugging our test-cases, but some things are missing.

  • Missing: values of input fields are not shown in the preview
  • Missing: the active element is not shown
  • Unable to collect multiple screenshots
  • Tied to vitest or jest depending on which package you use.

This is an attempt to improve this behavior and make it more convenient to make screenshots of your tests.

Concept

I started out with a simple solution that does not need any dependencies, but it has gotten a little more complicated.

There are three components

  • A small Node.js server that accepts preview data on an endpoint and provides a server-sent events endpoint to push live-updates to a frontend
  • The frontend (runs on the server), that shows a list of received previews and shows them in an iframe element.
  • The debug() function that dumps the current DOM and sends it to the server.

Installation and configuration

npm install dom-preview

Usage

Run the server

npx dom-preview

Open http://localhost:5007/__dom-preview__/

In your test, call the debug function

import { screen } from "@testing-library/dom";
import { userEvent } from "@testing-library/user-event";
import { debug } from "dom-preview";

test("input fields", async () => {
  const user = userEvent.setup();
  document.body.innerHTML = `
      <label for="firstname">First name:</label><input id="firstname" type="text" value="" />
      <label for="lastname">Last name:</label><input id="lastname" type="text" value="" />
    `;
  debug("empty inputs");
  await user.type(screen.getByLabelText("First name:"), "Max");
  debug("firstname entered");
  await user.type(screen.getByLabelText("Last name:"), "Mustermann");
  debug("form complete");
});

CSS

If you want nicely styled previews, you need to make sure that your test-framework emits css into the DOM. In vitest, you can do this by setting

test: {
  css: true;
}

(see https://vitest.dev/config/#css for details)

Static assets

Sometimes your previews show images or use other files that would usually be delivered by your web-server. Since the dom-preview server is framework independent, it does not have information about those assets. It does not have access to your build configuration. As a workaround, the server has the ability to proxy all requests that do not go to the /__dom-preview__/-path to another URL. You can do this by using the option --proxy-to=<url>:

  • Run your usual vite- or webpack-dev-server on port '5173'
  • Run npx dom-preview --proxy-to-http://localhost:4000

Context

A preview can have context. dom-preview does not make assumptions about what it is. It is just a string. In the UI it is used to group tests together.

The intended use is to store the name of the currrent test. In vitest, you can use configure a "setupFile":

test: {
  css: true,
  globals: true,
  setupFiles: ["./src/setupTests,js"]
}

and then create "setupTests" like this:

import { setDomPreviewContext } from "dom-preview";

beforeEach(() => {
  setDomPreviewContext(expect.getState().currentTestName);
});

Optimal setup for vite

Another convenient way is to use npm-run-all to run vite dev-server, tests in watch mode:

"scripts": {
    "dev:server": "vite --port=5173",
    "dev:unit": "vitest --ui",
    "dev:dom-preview": "dom-preview --proxy-to=http://localhost:5173",
    "dev": "run-p dev:*",
}

In my view, this is the ideal setup for doing test-driven development in frontend projects

License

This project is licensed under the MIT License

Maintainance

I want to be honest. There is just to much going on in my life at the moment and I might not have much time maintaining this project. I wanted to do it anyway. I tried to design this project to make it easily maintainable.

  • There are no dependendies except for development.
  • Only the following runtime dependencies are bundle
  • The library is small and has a clear scope. There might be some features missing, but I think of it as almost complete.
  • I don't see any way this library may impact security.

If you like to help me maintain and update dependencies, please contact me.

Funding โ˜•

You can also send me money, if you like my work:

dom-preview's People

Contributors

nknapp avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

rickythefox

dom-preview's Issues

Incorrect typing of debug in the npm package

In the npm package in /dom-preview/dist/index.d.mts we have

declare function debug(alias: string | undefined): void;

which results in a linter error when no argument is passed:
image

The definition in this repo in packages/dom-preview/src/debug.ts is correct though (optional parameter). Maybe it's some packaging issue?

Setting strict to false in tsconfig resolves this but is obviously not a good solution.

Edit: interestingly enough building the package locally generates correct type declarations. Maybe the package in npm was built incorrectly?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.