1
0
Fork 0
mirror of synced 2024-06-26 02:31:09 -04:00
ultimate-vim/sources_non_forked/vim-snippets/snippets/javascript-mocha.snippets

35 lines
873 B
Plaintext
Raw Normal View History

2022-08-08 09:45:56 -04:00
snippet des "describe('thing', function() { ... })" b
describe('${1:}', function() {
2017-02-11 08:01:38 -05:00
${0:${VISUAL}}
2016-06-11 09:56:50 -04:00
});
2022-08-08 09:45:56 -04:00
snippet it "it('should do', function() { ... })" b
it('${1:}', function() {
2017-02-11 08:01:38 -05:00
${0:${VISUAL}}
2016-06-11 09:56:50 -04:00
});
2022-08-08 09:45:56 -04:00
snippet xit "xit('should do', function() { ... })" b
xit('${1:}', function() {
2017-02-11 08:01:38 -05:00
${0:${VISUAL}}
2016-11-09 12:22:55 -05:00
});
2022-08-08 09:45:56 -04:00
snippet bef "before(function() { ... })" b
before(function() {
2017-02-11 08:01:38 -05:00
${0:${VISUAL}}
});
2022-08-08 09:45:56 -04:00
snippet befe "beforeEach(function() { ... })" b
beforeEach(function() {
2017-02-11 08:01:38 -05:00
${0:${VISUAL}}
});
2022-08-08 09:45:56 -04:00
snippet aft "after(function() { ... })" b
after(function() {
2017-02-11 08:01:38 -05:00
${0:${VISUAL}}
});
2022-08-08 09:45:56 -04:00
snippet afte "afterEach(function() { ... })" b
afterEach(function() {
2017-02-11 08:01:38 -05:00
${0:${VISUAL}}
});
snippet exp "expect(...)" b
2016-06-11 09:56:50 -04:00
expect(${1:})${0};
2017-02-11 08:01:38 -05:00
snippet expe "expect(...).to.equal(...)" b
2016-06-11 09:56:50 -04:00
expect(${1:}).to.equal(${0});
2017-02-11 08:01:38 -05:00
snippet expd "expect(...).to.deep.equal(...)" b
2016-06-11 09:56:50 -04:00
expect(${1:}).to.deep.equal(${0});