Skip to content

Commit c26e52c

Browse files
committed
fix linter issues
1 parent f24f166 commit c26e52c

File tree

17 files changed

+46731
-47464
lines changed

17 files changed

+46731
-47464
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"presets": ["react", "es2015", "es2017", "stage-0"]
2+
"presets": ["react", "es2015", "stage-0"]
33
}

__tests__/Clock.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import App from '../examples/clock/App'
66

77
describe('Clock App', () => {
88
const clock = sinon.useFakeTimers()
9-
const app = mount(<App/>)
9+
const app = mount(<App />)
1010
const clearIntervalSpy = sinon.spy(global, 'clearInterval')
1111

1212
afterAll(() => {

__tests__/Contacts.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import toJSON from 'enzyme-to-json'
44
import App from '../examples/contacts/App'
55

66
describe('Contacts App', () => {
7-
const app = mount(<App/>)
7+
const app = mount(<App />)
88

99
test('should add new contacts', async () => {
1010
expect(toJSON(app)).toMatchSnapshot('01. Initial state')

__tests__/TodoMVC.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import toJSON from 'enzyme-to-json'
44
import App from '../examples/todoMVC/App'
55

66
describe('TodoMVC App', () => {
7-
const app = mount(<App/>)
7+
const app = mount(<App />)
88

99
test('should add todos', async () => {
1010
expect(toJSON(app)).toMatchSnapshot('01. Initial state')

0 commit comments

Comments
 (0)