1.2.0 • Published 2 years ago

fetchtest v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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)
1.2.0

2 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.1.2

3 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago