Skip to content

Commit

Permalink
fix: fix intgration test connect with terminal (#34)
Browse files Browse the repository at this point in the history
* fix: fix intgration test connect with terminal

Signed-off-by: Sarthak Shyngle <[email protected]>

* chore: add changelog

Signed-off-by: Sarthak Shyngle <[email protected]>

---------

Signed-off-by: Sarthak Shyngle <[email protected]>
  • Loading branch information
Sarthak160 authored Sep 5, 2024
1 parent 6c6c74f commit 9813534
Show file tree
Hide file tree
Showing 6 changed files with 356 additions and 256 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,7 @@ First Release for Vs Code Extension.
- Added support for Menu commands for updating keploy, viewing keploy version, viewing docs, viewing latest version and viewing changelog

## [1.0.2]
- UI improvements and Bug fixes: Commands and Signin was visible in other extension views
- UI improvements and Bug fixes: Commands and Signin was visible in other extension views

## [1.0.6]
- Releasing a stable version for UTG and fix terminal conection of e2e tests
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "keployio",
"displayName": "Keploy",
"description": "Streamline testing with the power of Keploy, directly in your favorite IDE.",
"version": "1.0.6",
"version": "1.0.7",

"publisher": "Keploy",
"icon": "media/logo.png",
Expand Down
2 changes: 1 addition & 1 deletion scripts/logs/record_mode.log
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sudo: 2 incorrect password attempts
sudo: a password is required
11 changes: 10 additions & 1 deletion sidebar/sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const viewRecordLogsButton = document.getElementById('viewRecordLogsButton');
// const selectRecordFolderButton = document.getElementById('selectRecordFolderButton');
// const selectTestFolderButton = document.getElementById('selectTestFolderButton');
const navigateToConfigButton = document.getElementById('backtoHome');
const navigateToConfigButton2 = document.getElementById('backtoHome2');
const backtoHome = document.getElementById('backArrow');
let FilePath = "";

//cleanup required
Expand Down Expand Up @@ -133,6 +133,15 @@ if (navigateToConfigButton) {
);
}

if (backtoHome) {
backtoHome.addEventListener('click', async () => {
vscode.postMessage({
type: "navigate",
value: "Config"
});
}
);
}

// if (selectRecordFolderButton) {
// selectRecordFolderButton.addEventListener('click', async () => {
Expand Down
8 changes: 0 additions & 8 deletions webviews/components/IntegrationTest.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
let path = "./";
let passThroughPorts = "";
let navigateToConfig = false;
let navigateToConfig2 = false;
function handleSetupConfig() {
showSettings = true;
Expand All @@ -13,10 +12,6 @@
navigateToConfig = true;
}
function NavigateToConfig2() {
console.log("NavigateToConfig2");
navigateToConfig2 = true;
}
</script>

<body class="baloo-2-custom">
Expand Down Expand Up @@ -59,9 +54,6 @@
<button class="button" id="initialiseConfigButton"
>Save Configuration</button
>
<button class="button" id="backtoHome2" on:click={NavigateToConfig2}>
Back
</button>
</div>
</body>

Expand Down
Loading

0 comments on commit 9813534

Please sign in to comment.