Skip to content

Commit 7c4651e

Browse files
committed
update: adjusting key prefix
1 parent a87de13 commit 7c4651e

File tree

53 files changed

+153
-153
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+153
-153
lines changed

snippets/js/tests/chai/README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,86 @@
11
# Chai JavaScript Snippets
22

3-
## Prefix `tb.*`
3+
## Prefix `tc.*`
44

5-
### [tt.equal] equal
5+
### [tc.equal] equal
66

77
```javascript
88
assert.equal(${1:actual}, ${1:expected} ${2:, message});
99
```
1010

11-
### [tt.lengthof] lengthOf
11+
### [tc.lengthof] lengthOf
1212

1313
```javascript
1414
assert.lengthOf(${1:actual}, ${1:expected} ${2:, message});
1515
```
1616

17-
### [tt.typeof] typeOf
17+
### [tc.typeof] typeOf
1818

1919
```javascript
2020
assert.typeOf(${1:actual}, ${1:expected} ${2:, message});
2121
```
2222

23-
### [tb.tobea] to.be.a
23+
### [tc.tobea] to.be.a
2424

2525
```javascript
2626
expect(${1}).to.be.a(${2});
2727
```
2828

29-
### [tb.toequal] to.equal
29+
### [tc.toequal] to.equal
3030

3131
```javascript
3232
expect(${1}).to.equal(${2});
3333
```
3434

35-
### [tb.tohl] to.have.length
35+
### [tc.tohl] to.have.length
3636

3737
```javascript
3838
expect(${1}).to.have.length(${2});
3939
```
4040

41-
### [tb.tohp] to.have.property
41+
### [tc.tohp] to.have.property
4242

4343
```javascript
4444
expect(${1}).to.have.property(${2}).with.length(${3});
4545
```
4646

47-
### [tt.equal] equal
47+
### [tc.equal] equal
4848

4949
```javascript
5050
assert.equal(${1:actual}, ${1:expected} ${2:, message});
5151
```
5252

53-
### [tt.lengthof] lengthOf
53+
### [tc.lengthof] lengthOf
5454

5555
```javascript
5656
assert.lengthOf(${1:actual}, ${1:expected} ${2:, message});
5757
```
5858

59-
### [tt.typeof] typeOf
59+
### [tc.typeof] typeOf
6060

6161
```javascript
6262
assert.typeOf(${1:actual}, ${1:expected} ${2:, message});
6363
```
6464

65-
### [tb.bea] be.a
65+
### [tc.bea] be.a
6666

6767
```javascript
6868
${1}.should.be.a(${2});
6969
```
7070

71-
### [tb.equal] equal
71+
### [tc.equal] equal
7272

7373
```javascript
7474
${1}.should.equal(${2});
7575
```
7676

77-
### [tb.hlength] have.length
77+
### [tc.hlength] have.length
7878

7979
```javascript
8080
${1}.should.have.length(${2});
8181
```
8282

83-
### [tb.hproperty] have.property
83+
### [tc.hproperty] have.property
8484

8585
```javascript
8686
${1}.should.have.property(${2}).with.length(${3});

snippets/js/tests/chai/bdd-chai-expect-to-be-a.sublime-snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<content><![CDATA[
33
expect(${1}).to.be.a(${2});
44
]]></content>
5-
<tabTrigger>tb.tobea</tabTrigger>
6-
<description>tb - Expect to.be.a</description>
5+
<tabTrigger>tc.tobea</tabTrigger>
6+
<description>tc - Expect to.be.a</description>
77
</snippet>

snippets/js/tests/chai/bdd-chai-expect-to-equal.sublime-snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<content><![CDATA[
33
expect(${1}).to.equal(${2});
44
]]></content>
5-
<tabTrigger>tb.toequal</tabTrigger>
6-
<description>tb - Expect to.equal</description>
5+
<tabTrigger>tc.toequal</tabTrigger>
6+
<description>tc - Expect to.equal</description>
77
</snippet>

snippets/js/tests/chai/bdd-chai-expect-to-have-length.sublime-snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<content><![CDATA[
33
expect(${1}).to.have.length(${2});
44
]]></content>
5-
<tabTrigger>tb.tohl</tabTrigger>
6-
<description>tb - Expect to.have.length</description>
5+
<tabTrigger>tc.tohl</tabTrigger>
6+
<description>tc - Expect to.have.length</description>
77
</snippet>

snippets/js/tests/chai/bdd-chai-expect-to-have-property.sublime-snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<content><![CDATA[
33
expect(${1}).to.have.property(${2}).with.length(${3});
44
]]></content>
5-
<tabTrigger>tb.tohp</tabTrigger>
6-
<description>tb - Expect to.have.property</description>
5+
<tabTrigger>tc.tohp</tabTrigger>
6+
<description>tc - Expect to.have.property</description>
77
</snippet>

snippets/js/tests/chai/bdd-chai-should-be-a.sublime-snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<content><![CDATA[
33
${1}.should.be.a(${2});
44
]]></content>
5-
<tabTrigger>tb.bea</tabTrigger>
6-
<description>tb - Should be.a</description>
5+
<tabTrigger>tc.bea</tabTrigger>
6+
<description>tc - Should be.a</description>
77
</snippet>

snippets/js/tests/chai/bdd-chai-should-equal.sublime-snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<content><![CDATA[
33
${1}.should.equal(${2});
44
]]></content>
5-
<tabTrigger>tb.equal</tabTrigger>
6-
<description>tb - Should equal</description>
5+
<tabTrigger>tc.equal</tabTrigger>
6+
<description>tc - Should equal</description>
77
</snippet>

snippets/js/tests/chai/bdd-chai-should-have-length.sublime-snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<content><![CDATA[
33
${1}.should.have.length(${2});
44
]]></content>
5-
<tabTrigger>tb.hlength</tabTrigger>
6-
<description>tb - Should have.length</description>
5+
<tabTrigger>tc.hlength</tabTrigger>
6+
<description>tc - Should have.length</description>
77
</snippet>

snippets/js/tests/chai/bdd-chai-should-have-property.sublime-snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<content><![CDATA[
33
${1}.should.have.property(${2}).with.length(${3});
44
]]></content>
5-
<tabTrigger>tb.hproperty</tabTrigger>
6-
<description>tb - Should have.property</description>
5+
<tabTrigger>tc.hproperty</tabTrigger>
6+
<description>tc - Should have.property</description>
77
</snippet>

snippets/js/tests/chai/tdd-chai-assert-equal.sublime-snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<content><![CDATA[
33
assert.equal(${1:actual}, ${1:expected} ${2:, message});
44
]]></content>
5-
<tabTrigger>tt.equal</tabTrigger>
6-
<description>tt - Assert equal</description>
5+
<tabTrigger>tc.equal</tabTrigger>
6+
<description>tc - Assert equal</description>
77
</snippet>

0 commit comments

Comments
 (0)