lb-declarative-e2e-test

Declaration driven test generator for Loopback applications


Keywords
api, automation, e2e, js, loopback, mocha, rest, strongloop, supertest, test
License
MIT
Install
npm install lb-declarative-e2e-test@0.5.0

Documentation

lb-declarative-e2e-test

Build Status Coverage Status NPM version

lb-declarative-e2e-test allows to write tests for Loopback.io in an object definition style.

{
  name: 'admin CAN create',
  verb: 'post',
  auth: usersCredentials.admin,
  body: {some: 'value'},
  url: '/some/url/',
  expect: 200
}

It combines and exposes API from Mocha and supertest but without the boilerplate.

Installation

npm install --save-dev lb-declarative-e2e-test

# or
npm i -D lb-declarative-e2e-test

Documentation

The documentation is available on the project's page

Issues

Please share your feedback and report the encountered issues on the project's issues page.

Demo

A demo example is available on Github.