Socket
Socket
Sign inDemoInstall

chai-factories

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    chai-factories

Factories over fixtures. Build for the Chai Assertion Library


Version published
Weekly downloads
155
decreased by-63.18%
Maintainers
1
Install size
14.5 kB
Created
Weekly downloads
 

Readme

Source

Chai Factories

This is a addon plugin for the Chai Assertion Library.

Chai Factories is a simple straightforward factory builder for your awesome tests.

Installation

Node.js
  $ npm install chai-factories
Browser

Include chai-factories.js after including chai.js.

<script src="chai-factories.js"></script>

Plug In

If you are using chai-factories in the browser, there is nothing you need to do. It will detect chai in the global namespace and automagically get used.

If you are using node, here is a useful bit.

var chai = require('chai')
  , factories = require('chai-factories');

chai.use(factories);

Building for the Browser

If you are developing an addon for chai, one thing you might find useful is the contents of the support folder. This directly contains everything that is needed to package all js files in a directory for browser use. Provided there are no external dependencies, everything will be packaged and wrapped with a CommonJS require style loader by folio, a small JS packaging tool. Please consult the comments in support/compile.js.

Usage

Register a factory
chai.factory('person', { name: 'John Doe', age: 29 });
chai.factory('cat', { name: 'Boo' });
Build from factory
var user = chai.factory('person');
console.log(user);
Overwrite property
chai.factory('cat', { cute: true, age: 4 });
var cat = chai.factory('cat', { cute: false });
Extend a factory
var cat = chai.factory('cat', { cute: true, age: 4 });
chai.factory('tiger', cat.extend({ scary: true }));

Tests

Tests are written using mocha. Node tests can be executed using make test. Browser tests can be seen by opening test/browser/index.html.

License

(The MIT License)

Copyright (c) Veselin Todorov hi@vesln.com

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.

FAQs

Last updated on 01 May 2012

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc