Skip to content

Instantly share code, notes, and snippets.

@TaylorAckley
Last active March 2, 2017 20:48
Show Gist options
  • Save TaylorAckley/08970ec05d2b41ceca83abe0d2558f3a to your computer and use it in GitHub Desktop.
Save TaylorAckley/08970ec05d2b41ceca83abe0d2558f3a to your computer and use it in GitHub Desktop.
'use strict';
require('dotenv').config();
let fs = require('fs');
let moment = require('moment');
let ts = moment().format('YYY_MM_DD');
let filename = `unit/${ts}_unit.jpg`
let assert = require('assert');
let chai = require('chai'),
expect = chai.expect,
should = chai.should();
let env = process.env;
describe('env vars', () => {
it(' should be defined and strings', () => {
env.AWS_ACCESS_KEY_ID.should.be.a('string');
env.AWS_SECRET_ACCESS_KEY.should.be.a('string');
env.AWS_BUCKET.should.be.a('string');
});
})
let @@@ = require('../index.js');
/*
should.equal
should.be.a.('string')
should.have.property('').equals('')
should.exist
*/
describe('@@', () => {
describe('constructor', () => {
it('should not require an argument', () => {
});
describe('@@@', (done) => {
it('@@@', (done) => {
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment