Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Adding data-test-hook for HorizontalLoader (#143)
Browse files Browse the repository at this point in the history
Adding data-test-hook for HorizontalLoader so that we can detect loading states in E2E tests.
  • Loading branch information
chengch801214 authored Nov 18, 2019
1 parent 6728b44 commit 20ee7ff
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 7.0.9
### Changed
- Added data-test-hook='progressbar' for HorizontalLoader

## 7.0.8
### Fixed
- Flattened markdown in context panel to have content, footer and header at the same level.
Expand Down
2 changes: 1 addition & 1 deletion lib/components/Loader/HorizontalLoader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const HorizontalLoader: React.StatelessComponent<HorizontalLoaderProps> =
}

return (
<div className={containerClassName}>
<div className={containerClassName} data-test-hook='progressbar'>
{dots}
</div>
);
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/azure-iot-ux-fluent-controls",
"version": "7.0.8",
"version": "7.0.9",
"description": "Azure IoT UX Fluent Controls",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down

0 comments on commit 20ee7ff

Please sign in to comment.