This website works better with JavaScript.
Home
Explore
Help
Sign In
bingen
/
emacs.d
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Add Javascript mocha test snippets
master
ßingen
6 years ago
parent
9b56932a6e
commit
22d0953525
2 changed files
with
16 additions
and
0 deletions
Unified View
Show Diff Stats
+8
-0
snippets/js2-mode/context.yasnippet
+8
-0
snippets/js2-mode/it.yasnippet
+ 8
- 0
snippets/js2-mode/context.yasnippet
View File
# -*- mode: snippet -*-
# contributor: ßingen
# key: ctx
# name: context test unit
# --
context('$1', () => {
$0
})
+ 8
- 0
snippets/js2-mode/it.yasnippet
View File
# -*- mode: snippet -*-
# contributor: ßingen
# key: it
# name: it test unit
# --
it('$1', async () => {
$0
})
Write
Preview
Loading…
Cancel
Save