Skip to content

Instantly share code, notes, and snippets.

@robksawyer
Created November 26, 2014 02:32
Show Gist options
  • Save robksawyer/17fb39e63fff5c24ed8e to your computer and use it in GitHub Desktop.
Save robksawyer/17fb39e63fff5c24ed8e to your computer and use it in GitHub Desktop.
'use strict';
/*
* Location: /test/bootstrap.test.js
*
* @description :: This file is run before all other tests.
*/
var should = require('chai').should(),
appHelper = require('./helpers/appHelper');
before('bootstrap', function (done) {
appHelper.lift(done);
});
//...
// Global after hook
after('bootstrap', function (done) {
appHelper.lower(done);
});
@robksawyer
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment