Socket
Book a DemoInstallSign in
Socket

describe-with-domino

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

describe-with-domino

Wraps mocha's describe function with domino and cleans up globals afterwards

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

describe-with-domino

Wraps mocha's describe function with domino (a lightweight alternative to JSDom) and cleans up globals afterwards.

Works great with enzyme.

Usage

"use strict";

const describeWithDomino = require('describe-with-domino');
const expect = require('expect');

describeWithDomino('this test has access to the dom', function() {
  it('should access to the dom', function() {
    expect(document).toExist();

    var div = document.createElement('div');
    div.innerHTML = 'hello';
    document.body.appendChild(div);
    expect(document.querySelector('body').innerHTML).toEqual('<div>hello</div>');
  })
});

Keywords

domino

FAQs

Package last updated on 16 Jun 2016

Did you know?

Socket

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.