Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ env:
PW_DIAL_NUMBER: ${{ secrets.PW_DIAL_NUMBER }}
PW_AGENT2_USERNAME: ${{ secrets.PW_AGENT2_USERNAME }}
PW_AGENT2_EXTENSION_NUMBER: ${{ secrets.PW_AGENT2_EXTENSION_NUMBER }}
PW_SENDER_EMAIL : ${{ secrets.PW_SENDER_EMAIL }}
PW_EMAIL_ENTRY_POINT : ${{ secrets.PW_EMAIL_ENTRY_POINT }}
PW_APP_PASSWORD: ${{ secrets.PW_APP_PASSWORD }}

jobs:
validate:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ exports[`UserState Component Snapshots Interactions should handle custom state r
</div>
`;

exports[`UserState Component Snapshots Rendering should not render elapsed time when customState is present 1`] = `
exports[`UserState Component Snapshots Rendering - Tests for UI elements and visual states of UserState component should not render elapsed time when customState is present 1`] = `

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we also add why we have these changes in the PR description?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

due to some reason the pre-commit tests were failing, i had a chat with shreyas regarding that. he told me that there is some issue that he will take care of & told me to add this file as well. so, after adding those change the pre-commit tests passed.

@Shreyas281299 Shreyas281299 Jul 9, 2025

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mkesavan13 this was a miss on my part, the PR that went in before was my PR for unit test for user state, there I updated the description for 1 of the tests but didnt update the snapshots, hence the pre-commit checks were failling for Ritesh. I had asked him to update the snapshot.

<div
class="user-state-container"
data-testid="user-state-container"
Expand Down Expand Up @@ -415,7 +415,7 @@ exports[`UserState Component Snapshots Rendering should not render elapsed time
</div>
`;

exports[`UserState Component Snapshots Rendering should render elapsed time with disabled class when isSettingAgentStatus is true 1`] = `
exports[`UserState Component Snapshots Rendering - Tests for UI elements and visual states of UserState component should render elapsed time with disabled class when isSettingAgentStatus is true 1`] = `
<div
class="user-state-container"
data-testid="user-state-container"
Expand Down Expand Up @@ -558,7 +558,7 @@ exports[`UserState Component Snapshots Rendering should render elapsed time with
</div>
`;

exports[`UserState Component Snapshots Rendering should render elapsed time without lastIdleStateChangeElapsedTime when negative 1`] = `
exports[`UserState Component Snapshots Rendering - Tests for UI elements and visual states of UserState component should render elapsed time without lastIdleStateChangeElapsedTime when negative 1`] = `
<div
class="user-state-container"
data-testid="user-state-container"
Expand Down Expand Up @@ -700,7 +700,7 @@ exports[`UserState Component Snapshots Rendering should render elapsed time with
</div>
`;

exports[`UserState Component Snapshots Rendering should render the component with correct elements 1`] = `
exports[`UserState Component Snapshots Rendering - Tests for UI elements and visual states of UserState component should render the component with correct elements 1`] = `
<div
class="user-state-container"
data-testid="user-state-container"
Expand Down
Loading