npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jsdom-simulant

v1.1.2

Published

Simulated DOM events for automated testing

Downloads

3,642

Readme

jsdom-simulant

Simulated DOM events for automated testing of JSDOM elements

This is a fork of simulant.js that has been modified so that it does not have load-time global dependencies.

In this fork, the function entry point requires a reference to the window object if it's called directly. Otherwise, the fire method will find the window and document that are referenced by element.ownerDocument and element.ownerDocument.defaultView.

This is how we instantiate and provide a new window for every single test method.

What's this for?

Sometimes you need to create fake DOM events so that you can test the parts of your app or library that depend on user input. But doing so is a royal pain in the arse:

// WITHOUT SIMULANT.JS
event = new MouseEvent('mousemove', {
  bubbles: true,
  cancelable: true,
  relatedTarget: previousNode
});

element.dispatchEvent(event);

// WITH SIMULANT.JS
simulant.fire(element, 'mousemove', {relatedTarget: previousNode});

Simulant was forked to make automated testing of Nomplate more pleasant.

Installation

npm install jsdom-simulant

Usage

// Create a simulated event
event = simulant(window, 'click');

// Create a simulated event with parameters, e.g. a middle-click
event = simulant(window, 'click', {button: 1, which: 2});

// Fire a previously created event
element = document.getElementById('some-id');
simulant.fire(element, event);

// Create an event and fire it immediately
simulant.fire(element, 'click');
simulant.fire(element, 'click', {button: 1, which: 2});

Limitations

Normally, events have side-effects - a click in a text input will focus it, a mouseover of an element will trigger its hover state, and so on. When creating events programmatically, these side-effects don't happen - so your tests shouldn't expect them to. For example you shouldn't fire simulated keypress events at an input element and expect its value to change accordingly.

There are exceptions - a click event on a checkbox input will cause a secondary change event to be fired, for example.

Building and testing

Simulant uses jsdom for testing.

To build the library, do npm run build.

To test the library using jsdom, do npm test.

To test the library in browsers, do npm start. This will build the library (and watch the source files for changes) and serve a simple test page to localhost:4567.

License

Copyright (c) 2013-16 Rich Harris (@rich_harris). Released under an MIT license.

Forked and updated by Luke Bayes in April of 2017