1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 01:25:00 +08:00

Updated plugins

This commit is contained in:
amix
2017-02-11 14:01:38 +01:00
parent a6de243fca
commit fe46dfbbe6
141 changed files with 2790 additions and 1630 deletions

View File

@ -1,18 +1,34 @@
snippet des "Describe" b
snippet des "describe('thing', () => { ... })" b
describe('${1:}', () => {
${0}
${0:${VISUAL}}
});
snippet it "it" b
snippet it "it('should do', () => { ... })" b
it('${1:}', () => {
${0}
${0:${VISUAL}}
});
snippet xit "xit" b
snippet xit "xit('should do', () => { ... })" b
xit('${1:}', () => {
${0}
${0:${VISUAL}}
});
snippet exp "expect" b
snippet bef "before(() => { ... })" b
before(() => {
${0:${VISUAL}}
});
snippet befe "beforeEach(() => { ... })" b
beforeEach(() => {
${0:${VISUAL}}
});
snippet aft "after(() => { ... })" b
after(() => {
${0:${VISUAL}}
});
snippet afte "afterEach(() => { ... })" b
afterEach(() => {
${0:${VISUAL}}
});
snippet exp "expect(...)" b
expect(${1:})${0};
snippet expe "expect" b
snippet expe "expect(...).to.equal(...)" b
expect(${1:}).to.equal(${0});
snippet expd "expect" b
snippet expd "expect(...).to.deep.equal(...)" b
expect(${1:}).to.deep.equal(${0});