Last active
December 21, 2015 01:38
-
-
Save sudodoki/6229133 to your computer and use it in GitHub Desktop.
Sublime Text 2 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
| <snippet> | |
| <content><![CDATA[ | |
| describe("${1:Subject}", function(){ | |
| ${2:// Your code goes here.} | |
| }); | |
| ]]></content> | |
| <tabTrigger>describe</tabTrigger> | |
| </snippet> |
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
| <snippet> | |
| <content><![CDATA[ | |
| it("${1:should}", function(){ | |
| ${2:// Your code goes here.} | |
| }); | |
| ]]></content> | |
| <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
| <tabTrigger>it</tabTrigger> | |
| </snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment