@aibulat/funtest
Version:
Using supertest to make tests for some publicly available REST APIs
69 lines (68 loc) • 2.1 kB
JavaScript
const reply = {
results: [
{
gender: "male",
name: {
title: "Mr",
first: "Alex",
last: "Craig",
},
location: {
street: {
number: 6979,
name: "Richmond Park",
},
city: "Wicklow",
state: "Galway City",
country: "Ireland",
postcode: 47980,
coordinates: {
latitude: "-1.3530",
longitude: "-33.7701",
},
timezone: {
offset: "-10:00",
description: "Hawaii",
},
},
email: "alex.craig@example.com",
login: {
uuid: "021baf56-de2b-48ed-9c4a-ebc227f6b322",
username: "crazyostrich903",
password: "savage",
salt: "Y5jRF41M",
md5: "ca74f7f38b39fe0d31735c4757a09dca",
sha1: "612cce6383c81b0a2f0f3ce5b39102ed0397dbcc",
sha256: "1cdbd92993edec23727a077c189db9ed9a5c0b723b9987f9f230c734858ca60a",
},
dob: {
date: "1986-11-11T09:39:43.753Z",
age: 36,
},
registered: {
date: "2017-08-15T09:00:34.644Z",
age: 5,
},
phone: "021-494-7211",
cell: "081-252-3440",
id: {
name: "PPS",
value: "4158856T",
},
picture: {
large: "https://randomuser.me/api/portraits/men/13.jpg",
medium: "https://randomuser.me/api/portraits/med/men/13.jpg",
thumbnail: "https://randomuser.me/api/portraits/thumb/men/13.jpg",
},
nat: "IE",
},
],
info: {
seed: "afddb792bb011966",
results: 1,
page: 1,
version: "1.4",
},
};
const samples = { reply };
export default samples;