describe-with-domino

v1.0.0
Wraps mocha's describe function with domino and cleans up globals afterwards
domino mocha enzyme

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>');
  })
});
npm i describe-with-domino

Metadata

  • MIT
  • Whatever
  • Geoffroy Warin
  • released 6/16/2016

Downloads

Maintainers