fakehtmldocument

1.0.2 • Public • Published

FakeHTMLDocument

TESTS ONLY

If not exists, set global.document object with methods of HTMLDocument to prevent "document is not defined" error.

NOTE: The methods into FakeHTMLDocument not work, these methods are placeholders.

Install

    $ npm i --save-dev fakehtmldocument

Objective

Prevent error ReferenceError: Document|document|Window|window is not defined when you don't have this variables (like in tests).

How to use

Just import the code using require('fakehtmldocument') and the placeholders will be automated set.

Example

    require('fakehtmldocument')
    const assert = require('assert')
 
    assert.doesNotThrow(() => {
        // Remember: These classes and methods are just placeholders
 
        // Testing classes
        let testDocument = new Document()
        let testWindow = new Window()
 
        // Testing methods
        // getElementById = (...args) => any 
        document.getElementById('placeholder')
        
    }, 'Works fine without exception!')

Author

License

The MIT License (MIT)

Copyright (c) 2013-2017 Petka Antonov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i fakehtmldocument

Weekly Downloads

1

Version

1.0.2

License

MIT

Unpacked Size

5.18 kB

Total Files

3

Last publish

Collaborators

  • ecromaneli