-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: test case changes for fw-select
- Loading branch information
1 parent
fb4e567
commit 232a6ec
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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(); | ||
|
||
|