index.js 422 B

1234567891011121314
  1. var testDocument = require("./test-document")
  2. var testDomElement = require("./test-dom-element")
  3. var testDomComment = require("./test-dom-comment")
  4. var document = require("../index")
  5. testDocument(document)
  6. testDomElement(document)
  7. testDomComment(document)
  8. if (typeof window !== "undefined" && window.document) {
  9. testDocument(window.document)
  10. testDomElement(window.document)
  11. testDomComment(window.document)
  12. }