Last active
November 24, 2015 22:51
-
-
Save Ellisande/78b63c5deeb1d42b3408 to your computer and use it in GitHub Desktop.
Atom useful snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'.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