diff --git a/CHANGELOG.md b/CHANGELOG.md index 09f0002..b8cc7ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -73,4 +73,8 @@ First Release for Vs Code Extension. - Added support for a chatbot to provide additional prompts. - Improved Keploy binary update experience. - Enhanced signup/sign-in experience for users. -- Added support for new imports and installations of new libraries. \ No newline at end of file +- Added support for new imports and installations of new libraries. + +## [1.0.17] +- Enhanced path detection of test in Javascript, Python and Go. +- Increase file size limit to 1MB. \ No newline at end of file diff --git a/package.json b/package.json index 5337a17..43ae965 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "keployio", "displayName": "Keploy", "description": "Streamline testing with the power of Keploy, directly in your favorite IDE.", - "version": "1.0.16", + "version": "1.0.17", "publisher": "Keploy", "icon": "media/logo.png", "pricing": "Free", diff --git a/src/Utg.ts b/src/Utg.ts index 39b84af..365a8d3 100644 --- a/src/Utg.ts +++ b/src/Utg.ts @@ -97,7 +97,7 @@ async function Utg(context: vscode.ExtensionContext , additional_prompts?:string `import os\n\n` + `parent_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '${ParentDir}'))\n\n` + `sys.path.insert(0, parent_dir)\n\n`+ - `import ${MainFileName}\n\n`+ + `import ${MainFileName} # checking coverage for file - do not remove\n\n`+ `def test_dummy():\n` + ` assert True\n`;