Skip to content

Commit

Permalink
fix: test case changes for fw-select
Browse files Browse the repository at this point in the history
  • Loading branch information
harshith-venkatesh-freshworks committed Sep 30, 2024
1 parent fb4e567 commit 232a6ec
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,16 @@ describe('fw-select-option', () => {
`<fw-select-option
text="This is a select option description"
subText="This is selected option subtext"
data-meta-text='{"name": "Author Name", "email": "[email protected]", "mobile": "123-456-7890"}'>
</fw-select-option>`
);

await page.$eval('fw-select-option', (elm: any) => {
elm.variant = 'icon';
elm.metaText = {
name: 'Author Name',
email: '[email protected]',
mobile: '123-456-7890',
};
});
await page.waitForChanges();

Expand Down

0 comments on commit 232a6ec

Please sign in to comment.