Skip to content

Instantly share code, notes, and snippets.

View eesnaola's full-sized avatar
😀
Happy!

Ezequiel Esnaola eesnaola

😀
Happy!
View GitHub Profile
@eesnaola
eesnaola / index.js
Created April 25, 2019 18:55 — forked from sparry-diig/index.js
Unit testing Node.js request GET method with Mocha, Chai and Sinon for mocking request
const request = require('request');
const AWS = require('aws-sdk');
exports.handler = (event, context, callback) => {
'use strict';
console.log('Received event:', JSON.stringify(event, null, 2));
request.get('http://www.w3schools.com/website/customers_mysql.php',
function(err, response, body){