You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@epixa Not a big deal, but it'd probably be better to dump this sort of stuff into the operating system tmp directory rather than writing to the project itself. The tmp module is awesome for this as it'll automatically clean up when the process is killed, which means if the tests were killed while they were running, there wouldn't be leftover artifacts.
If you do end up keeping the mkdirp/current directory approach, please add this path to the .gitignore for when the tests are killed.
Actually, you're probably better off just circumventing the actual file system in your tests altogether. Something like mock-fs would allow you to mock away the file system entirely, which means the tests would run a lot faster and you would never run into issues with orphaned artifacts and the like.
## Summary
`eui@71.1.0` ⏩ `eui@72.2.0`
---
- Added `onFullScreen` callback to expose the `isFullScreen` state of
the `EuiImage` ([#6504](elastic/eui#6504))
- Added an extra spacing between the title and subtitle to `EuiTour`
([#6512](elastic/eui#6512))
- Updated `EuiText.blockquote` styles to match the
`EuiMarkdownFormat.blockquote` styles
([#6514](elastic/eui#6514))
- Added the `repositionOnScroll` prop to `EuiToolTip`
([#6515](elastic/eui#6515))
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Jason Stoltzfus <jason.stoltzfus@elastic.co>
Suggestions from PR #6402
tmp module
mock-fs module
The text was updated successfully, but these errors were encountered: