Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hangar-factory-girl

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hangar-factory-girl

Library to use Hangar with protractor

  • 0.1.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
2
Weekly downloads
 
Created
Source

Hangar Factory Girl

Library to use Hangar with Protractor

This is only useful with Hangar. Read more about hanger [here](hangar: http://www.faraday.io/blog/hangar-use-your-factorygirl-factories-for-your-front-end-tests).

Installation

npm install hangar-factory-girl

dependencies:

http-sync pluralize

Usage

var hangar = require('hangar-factory-girl');
var factory = new hangar();

describe('My Page', function() {

  afterEach(function() {
    factory.clear();
  });

  it("does something", function() {
    /* 
    *  method create
    *  1st param is factory's name
    *  2nd param is factory's attributes that you want to override
    *  3rd param is include option when you want model to return it's association
    */
    var user = factory.create('user');

    /* 
    *  method build
    *  1st param is factory's name
    *  2nd param is factory's attributes that you want to override
    */
    var comment = factory.build('comment', { user_id: user.id });

    browser.get('/accounts/' + user.id);
  });

});

Options

By default the waiting time used in http-sync is set to 4000. You can override it as:

var hangar = require('hangar-factory-girl');
var factory = new hangar({ wait_time: 5000 });

License

MIT

FAQs

Package last updated on 08 Oct 2015

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc