2.2.1 • Published 4 years ago

puppeteer-rq v2.2.1

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

puppeteer-rq

NPM version NPM Downloads

If you are writing puppeteer tests, and you want to mock your network responses easily – then this package will help you.

Getting Started

Installing

To use "Puppeteer-rq" in your project, run:

npm i --save-dev puppeteer-rq

Usage

// first you need to import the package
import mocker from 'puppeteer-rq';
// start mocker with params
await mocker.start(options);

// and stop mocker after test run
await mocker.stop();
//Both `mocker.start()` and `mocker.stop()` return a `Promise`.

You could use options

const options = {
  // puppeteer page
  page: page,
  // default namespace: '__remocks__'
  namespace: 'mockDirPath',
  mockList: {
    '_api/method': 'mockFilePath',
    '_api/method2': {
      GET: 'getMockFilePath',
      POST: 'postMockFilePath',
    },
    '_api/method3': {
      GET: {
        body: 'response',
        queryParams: {
          test: '123'
        }
      }
    }, 
    '_api/method4': {
      GET: {
        body: 'response',
        headers: {
          'Content-Type': 'application/json'
        }
      },
      POST: {
        filePath: 'postMockFilePath',
        headers: {
          'Content-Type': 'application/json'
        }
      }
    } 
  },
  // default: false
  // interruption of requests that are not in mockList and request.resourceType() == 'xhr' or 'fetch'
  ci: true
}
2.2.1

4 years ago

2.2.0

4 years ago

2.1.0

5 years ago

2.0.0

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago