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.2
  • 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 usefull with Hangar. More info about hangar: http://faraday.io/2014/09/24/hangar-using-factorygirl-factories-from-your-frontend-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() {
    var user = factory.create('user');
    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 07 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