diff --git a/CHANGELOG.md b/CHANGELOG.md index aebfff5..020d512 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to the "vue3-vscode-snippets" extension will be documented in this file. +## v0.4.1 + +[compare changes](https://github.com/ExEr7um/vue3-vscode-snippets/compare/v0.4.0...v0.4.1) + + +### 🩹 Fixes + + - Wrong parenthesis placement in Vitest snippets ([#48](https://github.com/ExEr7um/vue3-vscode-snippets/pull/48)) + +### ❤️ Contributors + +- Vasily Kuzin ([@ExEr7um](http://github.com/ExEr7um)) + ## v0.4.0 [compare changes](https://github.com/ExEr7um/vue3-vscode-snippets/compare/v0.3.1...v0.4.0) diff --git a/package.json b/package.json index dcb15d3..3b8239c 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Vue 3 VS Code Snippets", "description": "Vue 3 snippets for VS Code", "icon": "images/vue-logo.png", - "version": "0.4.0", + "version": "0.4.1", "publisher": "exer7um", "repository": { "type": "git", diff --git a/snippets/vitest/vitest.code-snippets b/snippets/vitest/vitest.code-snippets index ce6944c..8275677 100644 --- a/snippets/vitest/vitest.code-snippets +++ b/snippets/vitest/vitest.code-snippets @@ -13,54 +13,54 @@ "Vitest Describe": { "prefix": "videscribe", "body": [ - "describe('${1:name}'), () => {", + "describe('${1:name}', () => {", "\t${0}", - "}" + "})" ], "description": "Vitest Describe" }, "Vitest Describe - Concurrent": { "prefix": "videscribe-concurrent", "body": [ - "describe.concurrent('${1:name}'), () => {", + "describe.concurrent('${1:name}', () => {", "\t${0}", - "}" + "})" ], "description": "Vitest Describe Concurrent" }, "Vitest It": { "prefix": "viit", "body": [ - "it('${1:name}'), () => {", + "it('${1:name}', () => {", "\t${0}", - "}" + "})" ], "description": "Vitest It" }, "Vitest It - Concurrent": { "prefix": "viit-concurrent", "body": [ - "it.concurrent('${1:name}'), () => {", + "it.concurrent('${1:name}', () => {", "\t${0}", - "}" + "})" ], "description": "Vitest It Concurrent" }, "Vitest It - Async": { "prefix": "viit-async", "body": [ - "it('${1:name}'), async () => {", + "it('${1:name}', async () => {", "\t${0}", - "}" + "})" ], "description": "Vitest It Async" }, "Vitest It - Async Concurrent": { "prefix": "viit-async-concurrent", "body": [ - "it.concurrent('${1:name}'), async () => {", + "it.concurrent('${1:name}', async () => {", "\t${0}", - "}" + "})" ], "description": "Vitest It Async Concurrent" }, @@ -74,36 +74,36 @@ "Vitest Test": { "prefix": "vitest", "body": [ - "test('${1:name}'), () => {", + "test('${1:name}', () => {", "\t${0}", - "}" + "})" ], "description": "Vitest Test" }, "Vitest Test - Concurrent": { "prefix": "vitest-concurrent", "body": [ - "test.concurrent('${1:name}'), () => {", + "test.concurrent('${1:name}', () => {", "\t${0}", - "}" + "})" ], "description": "Vitest Test Concurrent" }, "Vitest Test - Async": { "prefix": "vitest-async", "body": [ - "test('${1:name}'), async () => {", + "test('${1:name}', async () => {", "\t${0}", - "}" + "})" ], "description": "Vitest Test Async" }, "Vitest Test - Async Concurrent": { "prefix": "vitest-async-concurrent", "body": [ - "test.concurrent('${1:name}'), async () => {", + "test.concurrent('${1:name}', async () => {", "\t${0}", - "}" + "})" ], "description": "Vitest Test Async Concurrent" },