From 39ea5c0e2e9bdf2c6e3bd0797e6fb422e6117aa2 Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Fri, 2 Jun 2017 00:27:15 +0900 Subject: Improve tests for JavaScript (#3496) - Upgrade dependencies - chai (3.5.0 -> 4.0.1) - chai-enzyme (0.6.1 -> 0.7.1) - sinon (2.2.0 -> 2.3.2) - Change extensions from .jsx to .js - Don't assign `React` to `global` - Check code format using ESLint --- spec/javascript/components/button.test.jsx | 71 ------------------------------ 1 file changed, 71 deletions(-) delete mode 100644 spec/javascript/components/button.test.jsx (limited to 'spec/javascript/components/button.test.jsx') diff --git a/spec/javascript/components/button.test.jsx b/spec/javascript/components/button.test.jsx deleted file mode 100644 index e08671c01..000000000 --- a/spec/javascript/components/button.test.jsx +++ /dev/null @@ -1,71 +0,0 @@ -import { expect } from 'chai'; -import { shallow } from 'enzyme'; -import sinon from 'sinon'; - -import Button from '../../../app/javascript/mastodon/components/button'; - -describe('); - expect(wrapper.find('button')).to.contain(children); - }); - - it('renders the props.text instead of children', () => { - const text = 'foo'; - const children =

children

; - const wrapper = shallow(); - expect(wrapper.find('button')).to.have.text(text); - expect(wrapper.find('button')).to.not.contain(children); - }); - - it('renders style="display: block; width: 100%;" if props.block given', () => { - const wrapper = shallow(