Snippets for Mocha in Atom.
apm install atom-mocha-snippets
or search “snippets” under packages within Atom.
describe("", function(){
});
context("", function(){
});
it("", function(){
});
specify("", function(){
});
before(function(){
});
beforeEach(function(){
});
after(function(){
});
afterEach(function(){
});
it("");
this.retries(integer);
this.timeout(milliseconds);
[MIT] © [Merrill Lines]