summaryrefslogtreecommitdiff
path: root/luasnip_snippets/javascript-jasmine-arrow.json
diff options
context:
space:
mode:
authorVito G. Graffagnino <vito@graffagnino.xyz>2022-08-30 16:06:22 +0100
committerVito G. Graffagnino <vito@graffagnino.xyz>2022-08-30 16:06:22 +0100
commitf1eabbaa1b4ff1836d0ee8335b31d009203f3775 (patch)
treebbe77eacaef8ab8a5999e517c3006973c9e3e44c /luasnip_snippets/javascript-jasmine-arrow.json
parent823302458ec6c53455a3f34674415c43ce6a3187 (diff)
fixed zathura integration with texlab using nvim-texlabconfig
Diffstat (limited to 'luasnip_snippets/javascript-jasmine-arrow.json')
-rw-r--r--luasnip_snippets/javascript-jasmine-arrow.json68
1 files changed, 68 insertions, 0 deletions
diff --git a/luasnip_snippets/javascript-jasmine-arrow.json b/luasnip_snippets/javascript-jasmine-arrow.json
new file mode 100644
index 0000000..63b5142
--- /dev/null
+++ b/luasnip_snippets/javascript-jasmine-arrow.json
@@ -0,0 +1,68 @@
+{
+ "des": {
+ "prefix": "des",
+ "description": "Describe (js)",
+ "body": [
+ "describe('${1:description}', () => {",
+ "\t$0",
+ "\\});"
+ ],
+ "luasnip": {
+ "priority": -50
+ }
+ },
+ "it": {
+ "prefix": "it",
+ "description": "it (js)",
+ "body": [
+ "it('${1:description}', () => {",
+ "\t$0",
+ "\\});"
+ ]
+ },
+ "bef": {
+ "prefix": "bef",
+ "description": "before each (js)",
+ "body": [
+ "beforeEach(() => {",
+ "\t$0",
+ "\\});"
+ ]
+ },
+ "aft": {
+ "prefix": "aft",
+ "description": "after each (js)",
+ "body": [
+ "afterEach(() => {",
+ "\t$0",
+ "\\});"
+ ]
+ },
+ "befa": {
+ "prefix": "befa",
+ "description": "before all (js)",
+ "body": [
+ "beforeAll(() => {",
+ "\t$0",
+ "\\});"
+ ]
+ },
+ "afta": {
+ "prefix": "afta",
+ "description": "after all (js)",
+ "body": [
+ "afterAll(() => {",
+ "\t$0",
+ "\\});"
+ ]
+ },
+ "ru": {
+ "prefix": "ru",
+ "description": "runs (js)",
+ "body": [
+ "runs(() => {",
+ "\t$0",
+ "\\});"
+ ]
+ }
+}