Skip to content

Commit ec1709c

Browse files
committed
functions added to the test file
1 parent a9804d8 commit ec1709c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/index.test.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
import {Loading} from './index';
1+
import {Loading, HideLoading, ShowLoading} from './index';
22

33
it('renders without crashing', () => {
44
Loading();
55
Loading({progress: true});
66
});
7+
8+
it('renders without crashing', () => {
9+
HideLoading();
10+
ShowLoading({progress: true});
11+
ShowLoading();
12+
HideLoading();
13+
});

0 commit comments

Comments
 (0)