Skip to content

Instantly share code, notes, and snippets.

@Quiark
Created April 15, 2016 04:21
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 Quiark/64b99cfcd48e1d8b31e38e704f1b1e5e to your computer and use it in GitHub Desktop.
Save Quiark/64b99cfcd48e1d8b31e38e704f1b1e5e to your computer and use it in GitHub Desktop.
mocha.setup({
ui: 'bdd',
timeout: 1000000
});
describe('key-recovery', function() {
describe('messaging', function() {
var allSessions, allMessengers, del;
beforeEach(function() {
allSessions = [
// redacted
];
allMessengers = // redacted but it takes 3 sec
});
it('should really do something', function() {
// literally empty
});
});
});
mocha.run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment