UNPKG

node-browser-environment

Version:

Simulates a global browser environment using jsdom

10 lines (8 loc) 211 B
import test from 'ava'; // We have to require() here as imports have to be top level so we can't set // globals first test(t => { global.document = false; require('../dist')(); t.is(document, false); });