Created
February 6, 2014 14:12
-
-
Save sebald/8844895 to your computer and use it in GitHub Desktop.
Sublime Text Snippet to insert a new Jasmine test.
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[ | |
| /** @requirement missing */ | |
| it('$1', function () { | |
| $2 | |
| }); | |
| ]]></content> | |
| <tabTrigger>it</tabTrigger> | |
| <scope>source.js</scope> | |
| <description>Insert New Test</description> | |
| </snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment