Skip to content

Instantly share code, notes, and snippets.

@pjanuario
Created February 25, 2016 15:30
Show Gist options
  • Save pjanuario/083afc60365b2798be44 to your computer and use it in GitHub Desktop.
Save pjanuario/083afc60365b2798be44 to your computer and use it in GitHub Desktop.
Atom snippets
'.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