Skip to content

Instantly share code, notes, and snippets.

@lior-amsalem
lior-amsalem / bucket_handler.js
Last active March 6, 2017 11:50
AWS Mock S3 service for tests in Mocha
'use strict';
const BUCKET_NAME = 'bucket-assets';
class BucketHandler {
constructor(awsModule) {
let AWS = require('aws-sdk');
this.s3 = new AWS.S3();
}