UNPKG

@kth/api-call

Version:

Node.js module to make JSON calls against APIs.

9 lines (6 loc) 239 B
const api = require('../../api') const apiShutdown = api({ https: false, host: 'localhost', port: '3210', path: '/api/test/goodbye' }) module.exports = async () => { // Shut down test api server await apiShutdown.promisedGetText() }