-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Accordion Example MDS-855 #13
Conversation
const COMPONENT_NAME = "accordion"; | ||
const MAX_DIFF_PIXEL_RATIO = 0.01; | ||
|
||
const DEFAULT_TIMEOUT = 1000; // We wait max for 1 second for mounting |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// TODO
I assume we could store this variable somewhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah my idea is pretty standard, create a consts directory, create the file index.ts to have the import point, then create playwright.ts and put there with a prefix PLAYWRIGHT_
, we avoid any conflicts in the future, and it make easy understand what is what
No description provided.