Skip to content

Instantly share code, notes, and snippets.

@sebald
Created February 6, 2014 14:12
Show Gist options
  • Select an option

  • Save sebald/8844895 to your computer and use it in GitHub Desktop.

Select an option

Save sebald/8844895 to your computer and use it in GitHub Desktop.
Sublime Text Snippet to insert a new Jasmine test.
<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