New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hangarjs

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hangarjs

Use hangar factories from protractor

  • 0.1.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

#hangarjs

Use hangar factories from protractor

##Install

Use npm

npm install hangarjs

##Usage

Initialize hangar, passing it the URL where hangar can be reached, as well as the protractor object

var hangar = require('hangarjs');

var factory = new hangar('http://localhost/', protractor);

Create a record

factory.create('user', {
  email: 'somebody@gmail.com',
  password: 'hunter2'
});

Get example attributes

factory.attributesFor('user').then(function(attributes){
  //...
});

Create a record based on the example

factory.attributesFor('user').then(function(attributes){
  attributes.admin = true;
  factory.create('user', attributes);
});

Empty the db when you're done testing

factory.clear();

FAQs

Package last updated on 06 Feb 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