lambda-tester
Version:
Unit/Integration tests for AWS Lambda handlers
31 lines (18 loc) • 446 B
JavaScript
;
const fs = require( 'fs' )
const { isObject } = require( './utils' );
let config;
try {
let contents = fs.readFileSync( '.lambda-tester.json', { encoding: 'utf8' } );
config = JSON.parse( contents );
if( !isObject( config ) ) {
throw new Error( 'not an object' );
}
config.loaded = true;
}
catch( err ) {
config = {
loaded: false
}
}
module.exports = Object.freeze( config );