Skip to content

Instantly share code, notes, and snippets.

@sudodoki
Last active December 21, 2015 01:38
Show Gist options
  • Select an option

  • Save sudodoki/6229133 to your computer and use it in GitHub Desktop.

Select an option

Save sudodoki/6229133 to your computer and use it in GitHub Desktop.
Sublime Text 2 Snippets
<snippet>
<content><![CDATA[
describe("${1:Subject}", function(){
${2:// Your code goes here.}
});
]]></content>
<tabTrigger>describe</tabTrigger>
</snippet>
<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