Created
February 25, 2016 15:30
-
-
Save pjanuario/083afc60365b2798be44 to your computer and use it in GitHub Desktop.
Atom 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': 'desc' | |
'body': 'describe(\'$1\', function () {\n\tit(\'$2\', function () {\n\t\t$3\n\t});\n});' | |
'Test': | |
'prefix': 'it' | |
'body': 'it(\'$1\', function () {\n\t$2\n});' | |
'Before Each': | |
'prefix': 'be' | |
'body': 'beforeEach(function () {\n\t$1\n});' | |
'After Each': | |
'prefix': 'ae' | |
'body': 'afterEach(function () {\n\t$1\n});' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment