We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd2ddc8 commit 4b0fab7Copy full SHA for 4b0fab7
src/components/__tests__/Progress.test.js
@@ -85,4 +85,13 @@ describe('Progress', () => {
85
86
expect(progressAnimated.firstChild).toHaveClass('progress-bar-animated');
87
});
88
+
89
+ test('sets className and style on the progress container', () => {
90
+ const {
91
+ container: {firstChild: progress}
92
+ } = render(<Progress style={{height: '40px'}} className="blorp" />);
93
94
+ expect(progress).toHaveClass('blorp');
95
+ expect(progress).toHaveStyle('height:40px');
96
+ });
97
0 commit comments