Add useBoolean tests

This commit is contained in:
Mario Beltrán Alarcón 2019-07-17 20:07:16 +02:00
parent 8c25b50cc1
commit f2d105737b

View File

@ -0,0 +1,6 @@
import useBoolean from '../useBoolean';
import useToggle from '../useToggle';
it('should be an alias for useToggle ', () => {
expect(useBoolean).toBe(useToggle);
});