0.5.0 • Published 7 years ago

lb-declarative-e2e-test v0.5.0

Weekly downloads
25
License
MIT
Repository
github
Last release
7 years ago

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.