diff --git a/src/components/Button/__tests__/index-test.js b/src/components/Button/__tests__/index-test.js index a7590e07..f09f5158 100644 --- a/src/components/Button/__tests__/index-test.js +++ b/src/components/Button/__tests__/index-test.js @@ -1,5 +1,30 @@ /* eslint-env jasmine, jest */ +import React from 'react'; +import Button from '..'; +import { mount, shallow } from 'enzyme'; + +const findNativeButton = wrapper => wrapper.getDOMNode(); + describe('components/Button', () => { - test.skip('NO TEST COVERAGE', () => {}); + test('prop "color"', () => { + const onPress = () => {}; + const color = 'blue'; + const button = findNativeButton(mount(