A collection of sublime text snippets
##JavaScript
func
function () {
}
me
module.exports =
req
var module = require('module');
##JavaScript Testing
desc
describe('some-test', function () {
});
it
it('should...', function () {
});
after
afterEach(function () {
});
before
beforeEach(function () {
});