├── .editorconfig ├── .gitignore ├── .jshintrc ├── .yo-rc.json ├── Gruntfile.js ├── LICENSE ├── README.md ├── karma.conf.js ├── package.json ├── src ├── App.js ├── components │ ├── Greeter.js │ ├── InvitationList.js │ └── SpecialityOfTheHouse.js ├── favicon.ico ├── images │ └── yeoman.png ├── index.html └── styles │ └── main.css ├── test ├── .jshintrc ├── helpers │ ├── phantomjs-shims.js │ └── react │ │ └── addons.js └── spec │ └── components │ ├── GreeterTestingStaticOut.js │ ├── GreeterTestingTestUtils.js │ ├── InvitationListRefs.js │ ├── InvitationListShallow.js │ ├── InvitationListTestUtils.js │ ├── InvitedPersonShallow.js │ ├── InvitedPersonStaticSimulate.js │ └── SpecialityOfTheHouseSimulate.js ├── webpack.config.js └── webpack.dist.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/.jshintrc -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/README.md -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Greeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/src/components/Greeter.js -------------------------------------------------------------------------------- /src/components/InvitationList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/src/components/InvitationList.js -------------------------------------------------------------------------------- /src/components/SpecialityOfTheHouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/src/components/SpecialityOfTheHouse.js -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/images/yeoman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/src/images/yeoman.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/src/index.html -------------------------------------------------------------------------------- /src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/src/styles/main.css -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/helpers/phantomjs-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/test/helpers/phantomjs-shims.js -------------------------------------------------------------------------------- /test/helpers/react/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/test/helpers/react/addons.js -------------------------------------------------------------------------------- /test/spec/components/GreeterTestingStaticOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/test/spec/components/GreeterTestingStaticOut.js -------------------------------------------------------------------------------- /test/spec/components/GreeterTestingTestUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/test/spec/components/GreeterTestingTestUtils.js -------------------------------------------------------------------------------- /test/spec/components/InvitationListRefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/test/spec/components/InvitationListRefs.js -------------------------------------------------------------------------------- /test/spec/components/InvitationListShallow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/test/spec/components/InvitationListShallow.js -------------------------------------------------------------------------------- /test/spec/components/InvitationListTestUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/test/spec/components/InvitationListTestUtils.js -------------------------------------------------------------------------------- /test/spec/components/InvitedPersonShallow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/test/spec/components/InvitedPersonShallow.js -------------------------------------------------------------------------------- /test/spec/components/InvitedPersonStaticSimulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/test/spec/components/InvitedPersonStaticSimulate.js -------------------------------------------------------------------------------- /test/spec/components/SpecialityOfTheHouseSimulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/test/spec/components/SpecialityOfTheHouseSimulate.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.dist.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/react-testing-approaches/HEAD/webpack.dist.config.js --------------------------------------------------------------------------------