Socket
Socket
Sign inDemoInstall

dom-events-mocking

Package Overview
Dependencies
1
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    dom-events-mocking

DOM events mocking


Version published
Weekly downloads
1
decreased by-80%
Maintainers
1
Install size
702 kB
Created
Weekly downloads
 

Readme

Source

DOM events mocking npm version CircleCI

=============

Wraps the DOM API to make real events mocking in the browser using method chaining.

npm install --save dome-events

Implements the following DOM events methods and helpers:

  • click
  • dblclick
  • drag
  • at
  • wait
  • exec
  • async
  • done
  • etc.

Why Do I Need This?

If you want to test your application and want/can use JavaScript only, but still cover UI events. Or write some integration tests:

it('Can handle my events', (done) => {
  const btn = document.getElelemntById('YOUR_BUTTON');

  events
    .click(btn)
    .exec(() => {
      expect('YOUR_VALIDATION').toBeTruthy();
    })
    .click(() => {
      // Dynamically created button
      return document.getElelemntById('YOUR_NEW_BUTTON');
    })
    .exec(() => {
      expect('YOUR_ANOTHER_VALIDATION').toBeFalsy();
    })
    .done(() => {
      // Final validations
      console.log('All steps executed');
      done();
    });
});

Demo

Based on happen.

License

BSD-2-Clause

Keywords

FAQs

Last updated on 27 Dec 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc