Skip to content

Instantly share code, notes, and snippets.

@radelmann
Created November 2, 2015 23:47
Show Gist options
  • Save radelmann/1cda23dd8ebc81e36955 to your computer and use it in GitHub Desktop.
Save radelmann/1cda23dd8ebc81e36955 to your computer and use it in GitHub Desktop.
sublime snippet - javascript - tdd - expect
<snippet>
<content><![CDATA[
it("${1:expects}", function() {
expect(${2:test}).to.equal(${3:result});
});
]]></content>
<description>tdd</description>
<tabTrigger>expect</tabTrigger>
<scope>source.js</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment