Atom Snippets
Related packages
- snippets - installed by default
- autocomplete-plus - installed by default
- autocomplete-snippets
Add new snippets
Change the file ~/.atom/snippets.cson
'.source.js':
'Unit testing':
'prefix': 'test'
'body': """
import { log } from 'utils/log'
describe('log()', () => {
it('should output log', () => {
expect(log()).toBe('log content')
})
})
"""