senkenn / sqlsurge

Visual Studio Code extension for SQL language server
https://marketplace.visualstudio.com/items?itemName=senken.sqlsurge
MIT License
18 stars 0 forks source link

Fix format bug for typescript and add related tests #82

Closed senkenn closed 4 months ago

senkenn commented 4 months ago

This pull request updates the tsconfig.json file to include the "test" directory in the "include" section. Previously, only the "src" directory was included. This change ensures that the TypeScript compiler includes files from both the "src" and "test" directories when compiling the project.

Update formatting in diesel.rs test and extension.test.ts

This pull request updates the formatting in the 'diesel.rs' test case and the 'extension.test.ts' file. The code block in the 'diesel.rs' test case is formatted with correct indentation and a value is bound for the 'WHERE' clause to remove the placeholder. Additionally, the description of the 'SQLx Completion Test' in 'extension.test.ts' is updated.

Add ts user defined func test

Fixed #80