Socket
Socket
Sign inDemoInstall

fetchtest

Package Overview
Dependencies
9
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fetchtest

A fetch wrapper for express testing


Version published
Weekly downloads
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

fetchtest

A wrapper for making HTTP request with fetch.

Getting Started

Install fetchtest

npm install --savedev fetchtest

Example

Pass an express or http.Server to fetchtest. This example assumes you are using express and jest.


import fetchtest from "fetchtest";
import express from 'express';

const app = express();

app.get('/', (req, res) => res.json({ status: ok }))

it('will succeed', async () => {
    const response = await fetchtest(app).get('/')
    expect(response.status).toEqual(200)
    expect(response.json).toEqual({ status: ok })
})

Supported Methods

// GET
const payload = { test: true }
const response = fetchTest(app).get('/endpoint', queryParams) // Will output to /endpoint?test=true

// POST
const payload = { test: true }
const response = fetchTest(app).post('/endpoint', payload)

// PUT
const payload = { test: true }
const response = fetchTest(app).put('/endpoint', payload)

// PATCH
const payload = { test: true }
const response = fetchTest(app).patch('/endpoint', payload)

// DELETE
const payload = { test: true }
const response = fetchTest(app).delete('/endpoint', payload)

FAQs

Last updated on 04 Mar 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc