UNPKG

mocha-jsdom

Version:

Simple integration of jsdom into mocha tests

15 lines (11 loc) 321 B
/* global it, expect, describe */ /* jshint expr: true */ var jsdom = require('../../index') describe('error', function () { jsdom({ src: "(function () { throw new Error('ffff'); })()" }) it('fails', function () { expect(global.document).be.undefined // eslint-disable-line no-unused-expressions }) })