deemix-gui/server/src/tests/utils.ts

8 lines
231 B
TypeScript
Raw Normal View History

import { Application } from 'express'
import request from 'supertest'
import { app } from '../app'
export const sendGet = (app: Application) => (uri: string) => request(app).get(uri).send()
export const appSendGet = sendGet(app)