Skip to content

Instantly share code, notes, and snippets.

@Ellisande
Last active November 24, 2015 22:51
Show Gist options
  • Save Ellisande/78b63c5deeb1d42b3408 to your computer and use it in GitHub Desktop.
Save Ellisande/78b63c5deeb1d42b3408 to your computer and use it in GitHub Desktop.
Atom useful snippets
'.source.js':
'Describe':
'prefix': 'describe'
'body': """
describe('$1',function(){
$2
});"""
'It':
'prefix': 'it'
'body': """
it('should $1', function(done){
$2
});"""
'It6':
'prefix': 'it6'
'body': """
it('should $1', (done) => {
$2
});"""
'Describe6':
'prefix': 'describe6'
'body': """
describe('$1', () => {
$2
});"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment