mirror of
https://github.com/tomru/DotfilesOld.git
synced 2026-03-03 06:27:21 +01:00
67 lines
964 B
Plaintext
67 lines
964 B
Plaintext
priority -30
|
|
|
|
# AMD (Asynchronous Module Definition) snippets
|
|
|
|
snippet def "define an AMD module"
|
|
define([
|
|
'${1:backbone}'
|
|
], (
|
|
${2:Backbone}
|
|
) => {
|
|
$0
|
|
}
|
|
endsnippet
|
|
|
|
# Jasmine
|
|
snippet des "Describe (js)" b
|
|
describe('${1:description}', () => {
|
|
$0
|
|
});
|
|
endsnippet
|
|
|
|
snippet it "it (js)" b
|
|
it('${1:description}', () => {
|
|
$0
|
|
});
|
|
endsnippet
|
|
|
|
snippet bef "before each (js)" b
|
|
beforeEach(() => {
|
|
$0
|
|
});
|
|
endsnippet
|
|
|
|
snippet aft "after each (js)" b
|
|
afterEach(() => {
|
|
$0
|
|
});
|
|
endsnippet
|
|
|
|
snippet befa "before all (js)" b
|
|
beforeAll(() => {
|
|
$0
|
|
});
|
|
endsnippet
|
|
|
|
snippet afta "after all (js)" b
|
|
afterAll(() => {
|
|
$0
|
|
});
|
|
endsnippet
|
|
|
|
snippet scc "stub.callCount" b
|
|
expect(${1:stub}.callCount).toEqual(${2:1});
|
|
endsnippet
|
|
|
|
snippet sca "stub.callCount and args" b
|
|
expect(${1:stub}.callCount).toEqual(${2:1});
|
|
expect($1.args[0][0]${2:.prop}).toEqual(${3:true});
|
|
$0
|
|
endsnippet
|
|
|
|
snippet et "expect to be true" b
|
|
expect(${1:toTest}).toEqual(true);
|
|
$0
|
|
endsnippet
|
|
# vim:ft=snippets:
|