Skip to content

Instantly share code, notes, and snippets.

@florianschmidt1994
Created July 27, 2015 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save florianschmidt1994/524d4e549895c288b78c to your computer and use it in GitHub Desktop.
Save florianschmidt1994/524d4e549895c288b78c to your computer and use it in GitHub Desktop.
co mocha
'use strict';
process.env.NODE_ENV = 'test';
var expect = require('chai').expect;
var app = require('../app');
var Promise = require('bluebird');
var comocha = require('co-mocha');
var _ = require('lodash');
before(function *() {
});
describe('', function() {
it('', function *() {
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment