March 2018
Intermediate to advanced
592 pages
13h 44m
English
Over inside the Terminal, I can shut down the server and use clear to clear the output. If I run our test suite using npm test, we see that we have our one test and it's passing:

Your job is going to be to add a second test case over inside of message.test.js.
We'll get started together. Right here, we're going to add a describe block, describe the generateLocationMessage function, and you're going to be responsible for adding a test case inside of the callback:
describe('generateLocationMessage', () => {});
In here, you're going to call it ('should generate correct location object'). Next up, we ...