Last active
February 25, 2019 19:19
-
-
Save ankryption/cb9a196acda1aed6794dca2ac4add9d6 to your computer and use it in GitHub Desktop.
Engineering Challenge from https://letsrevolutionizetesting.com/challenge
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axios = require('axios'); | |
async function follow(url) { | |
const { data } = await axios(url); | |
// display the route | |
console.log('data: ', data); | |
// the end: nothing to follow | |
if (!data || !data.follow) return; | |
// correct url to go deeper | |
await follow(data.follow.replace('challenge?', 'challenge.json?')); | |
} | |
follow('http://letsrevolutionizetesting.com/challenge.json'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment