One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
/* Pulled from https://github.com/joyent/node/blob/master/deps/uv/include/uv.h */ | |
/* Expand this list if necessary. */ | |
#define UV_ERRNO_MAP(XX) \ | |
XX(E2BIG, "argument list too long") \ | |
XX(EACCES, "permission denied") \ | |
XX(EADDRINUSE, "address already in use") \ | |
XX(EADDRNOTAVAIL, "address not available") \ | |
XX(EAFNOSUPPORT, "address family not supported") \ | |
XX(EAGAIN, "resource temporarily unavailable") \ | |
XX(EAI_ADDRFAMILY, "address family not supported") \ |
describe('Test for get tags endpoint', () => { | |
it('Should return status code 200 for success', (done) => { | |
chai.request(app) | |
.get('/api/tags') | |
.set('authorization', token) | |
.end((error, response) => { | |
expect(response).to.have.status(200); | |
done(); | |
}); | |
it('should return 404 for tags not found', (done) => { |
<div class="container"> | |
<div class="wrapper"> | |
<section id="intro"> | |
<p id="hey">Hey!</p> | |
<p id="do">Do you know that humans are not the only ones that have to put up with narcissists?</p> | |
</section> | |
<section id="textarea"> | |
<div id="modal"> | |
<p>Try another number?</p> |