Version 1
[yaffs-website] / node_modules / min-document / test / index.js
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
6 testDocument(document)
7 testDomElement(document)
8 testDomComment(document)
9
10 if (typeof window !== "undefined" && window.document) {
11     testDocument(window.document)
12     testDomElement(window.document)
13     testDomComment(window.document)
14 }