Skip to content

Commit

Permalink
[master] Remove semicolons, spaces and default text
Browse files Browse the repository at this point in the history
  • Loading branch information
qmmr authored and Marcin Kumorek committed Feb 28, 2015
1 parent b8f6c30 commit 26fc56e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions bdd.before-each.sublime-snippet
@@ -1,8 +1,8 @@
<snippet>
<content><![CDATA[
beforeEach(function () {
${1:// before each describe/it}$0
});
beforeEach(function() {
${1:// before each describe/it}
})
]]></content>
<tabTrigger>beforeEach</tabTrigger>
<scope>source.js</scope>
Expand Down
6 changes: 3 additions & 3 deletions bdd.before.sublime-snippet
@@ -1,8 +1,8 @@
<snippet>
<content><![CDATA[
before(function (${1:done}) {
${2:// before describe/it}$0
});
before(function(${1:done}) {
$0
})
]]></content>
<tabTrigger>before</tabTrigger>
<scope>source.js</scope>
Expand Down
6 changes: 3 additions & 3 deletions bdd.describe.sublime-snippet
@@ -1,8 +1,8 @@
<snippet>
<content><![CDATA[
describe('${1:description}', function () {
${2:// body...}$0
});
describe('${1:description}', function() {
$0
})
]]></content>
<tabTrigger>desc</tabTrigger>
<scope>source.js</scope>
Expand Down
2 changes: 1 addition & 1 deletion bdd.expect.sublime-snippet
@@ -1,6 +1,6 @@
<snippet>
<content><![CDATA[
expect(${1:obj}).to.${2:be}.${3:ok}${4:.}${6:(${5:str/obj})}
expect(${1:testCase}).to.${2:be}.${3:or not to be}$0
]]></content>
<tabTrigger>exp</tabTrigger>
<scope>source.js</scope>
Expand Down
6 changes: 3 additions & 3 deletions bdd.it.sublime-snippet
@@ -1,8 +1,8 @@
<snippet>
<content><![CDATA[
it('should ${1:description}', function (${2:done}) {
${3:// body...}$0
});
it('should ${1:description}', function(${2:done}) {
$0
})
]]></content>
<tabTrigger>it</tabTrigger>
<scope>source.js</scope>
Expand Down

0 comments on commit 26fc56e

Please sign in to comment.