-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Austin
authored and
Austin
committed
Jul 9, 2016
1 parent
7395016
commit f0925ea
Showing
9 changed files
with
107 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"presets": ["react" , "es2015" ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
'use strict'; | ||
|
||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); | ||
|
||
var _react = require('react'); | ||
|
||
var _react2 = _interopRequireDefault(_react); | ||
|
||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
|
||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
|
||
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } | ||
|
||
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } | ||
|
||
var SomeClass = function (_React$Component) { | ||
_inherits(SomeClass, _React$Component); | ||
|
||
function SomeClass() { | ||
_classCallCheck(this, SomeClass); | ||
|
||
return _possibleConstructorReturn(this, Object.getPrototypeOf(SomeClass).apply(this, arguments)); | ||
} | ||
|
||
_createClass(SomeClass, [{ | ||
key: 'render', | ||
value: function render() { | ||
return _react2.default.createElement( | ||
'h1', | ||
null, | ||
'Hello' | ||
); | ||
} | ||
}]); | ||
|
||
return SomeClass; | ||
}(_react2.default.Component); | ||
|
||
exports.default = SomeClass; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
'use strict'; | ||
|
||
var _expect = require('expect'); | ||
|
||
var _expect2 = _interopRequireDefault(_expect); | ||
|
||
var _ = require('../'); | ||
|
||
var _2 = _interopRequireDefault(_); | ||
|
||
var _react = require('react'); | ||
|
||
var _react2 = _interopRequireDefault(_react); | ||
|
||
var _reactAddonsTestUtils = require('react-addons-test-utils'); | ||
|
||
var _reactAddonsTestUtils2 = _interopRequireDefault(_reactAddonsTestUtils); | ||
|
||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
|
||
describe('SomeClass', function () { | ||
it('should render SomeClass', function () { | ||
var someClass = _reactAddonsTestUtils2.default.renderIntoDocument(_react2.default.createElement(_2.default, null)); | ||
(0, _expect2.default)(someClass).toExist(); | ||
}); | ||
}); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
export default class SomeClass { | ||
static someFunction() { | ||
console.log("Hello World"); | ||
import React from 'react'; | ||
|
||
class SomeClass extends React.Component { | ||
componentDidMount() { | ||
} | ||
render() { | ||
return ( | ||
<h1>Hello</h1> | ||
); | ||
} | ||
} | ||
module.exports = SomeClass; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
import expect from 'expect'; | ||
import SomeClass from '../'; | ||
import React from 'react'; | ||
import { mount, shallow } from 'enzyme'; | ||
|
||
describe("SomeClass", () => { | ||
it("should call someFunction()", () => { | ||
SomeClass.someFunction(); | ||
}) | ||
}) | ||
describe('SomeClass', () => { | ||
it('should render SomeClass', () => { | ||
const wrapper = mount(<SomeClass />); | ||
// expect(SomeClass.prototype.componentDidMount.calledOnce).to.equal(true); | ||
}); | ||
}); |