index.js 422 Bytes
var testDocument = require("./test-document")
var testDomElement = require("./test-dom-element")
var testDomComment = require("./test-dom-comment")
var document = require("../index")

testDocument(document)
testDomElement(document)
testDomComment(document)

if (typeof window !== "undefined" && window.document) {
    testDocument(window.document)
    testDomElement(window.document)
    testDomComment(window.document)
}