Skip to content

Commit

Permalink
Get first failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
alayor committed Oct 28, 2017
1 parent 7acb551 commit b316406
Show file tree
Hide file tree
Showing 4 changed files with 872 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"presets": [
"react",
"es2015"
]
}
8 changes: 8 additions & 0 deletions components/MyComponent.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from 'react';
import { shallow } from 'enzyme';

describe("MyComponent", () => {
it("should render correctly", () => {
const component = shallow(<MyComponent />);
});
});
Loading

0 comments on commit b316406

Please sign in to comment.