Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sbstnmsch-zz/window-mock
A light-weight window-mock for node/ io.js unit-testing written in ES6
https://github.com/sbstnmsch-zz/window-mock
Last synced: 4 months ago
JSON representation
A light-weight window-mock for node/ io.js unit-testing written in ES6
- Host: GitHub
- URL: https://github.com/sbstnmsch-zz/window-mock
- Owner: sbstnmsch-zz
- License: mit
- Created: 2015-09-09T16:40:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-04-05T19:11:36.000Z (over 2 years ago)
- Last Synced: 2024-08-14T09:11:44.569Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 347 KB
- Stars: 19
- Watchers: 1
- Forks: 5
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![npm version](https://badge.fury.io/js/window-mock.svg)](http://badge.fury.io/js/window-mock) [![Build Status](https://travis-ci.org/sbstnmsch/window-mock.svg?branch=master)](https://travis-ci.org/sbstnmsch/window-mock)
# window-mock
[![Greenkeeper badge](https://badges.greenkeeper.io/sbstnmsch/window-mock.svg)](https://greenkeeper.io/)
A light-weight window-mock for node/ io.js unit-testing written in ES6## Install
```shell
npm install window-mock --save-dev
```## Usage (ES6+)
Once you created a WindowMock-Instance the mock should behave exactly as the
browser's window object.```javascript
import test from 'tape';
import WindowMock from 'window-mock';test(`Some window interaction unit test`, (t) => {
let
windowMock = new WindowMock();windowMock.localStorage.setItem('key', 'value');
t.equal(
windowMock.localStorage.getItem('key'),
'value',
'should set `key` to `value`'
);t.end();
});
```## Usage (ES5/ Javascript)
```javascript
var
test = require('tape'),
WindowMock = require('window-mock');test(`Some window interaction unit test`, function(t) {
var
windowMock = new WindowMock();windowMock.localStorage.setItem('key', 'value');
t.equal(
windowMock.localStorage.getItem('key'),
'value',
'should set `key` to `value`'
);t.end();
});
```## Fork and Pull-request
This module was built for unit-test mocking the browser's window-object in
my other projects. It's far from complete and will grow once needed.Feel free to fork and pull-request for extending the API!