UNPKG

@aibulat/funtest

Version:

Using supertest to make tests for some publicly available REST APIs

18 lines (17 loc) 381 B
const user = { id: 7, email: "michael.lawson@reqres.in", first_name: "Michael", last_name: "Lawson", avatar: "https://reqres.in/img/faces/7-image.jpg", }; const regdata = { email: "eve.holt@reqres.in", password: "pistol", }; const token = { id: 4, token: "QpwL5tke4Pnpja7X4", }; const samples = { user, regdata, token }; export default samples;