├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── README.md ├── circle.yml ├── mocha.opts ├── package.json ├── src ├── alt │ ├── alt.js │ └── store.js ├── dom.js ├── legit-tests.js ├── middleware.js ├── middleware │ ├── clean.js │ ├── find.js │ ├── setState.js │ └── simulate.js ├── no-dom.js └── tests.js └── tests ├── components ├── component.jsx ├── index.js ├── other-component.jsx └── tiny-component.jsx ├── element.jsx ├── find.jsx ├── full-dom.jsx ├── mixin.jsx ├── no-dom.jsx ├── renderToString.jsx ├── setState.jsx ├── shallowRender.jsx └── simulate.jsx /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage": 0 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/circle.yml -------------------------------------------------------------------------------- /mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/mocha.opts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/package.json -------------------------------------------------------------------------------- /src/alt/alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/src/alt/alt.js -------------------------------------------------------------------------------- /src/alt/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/src/alt/store.js -------------------------------------------------------------------------------- /src/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/src/dom.js -------------------------------------------------------------------------------- /src/legit-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/src/legit-tests.js -------------------------------------------------------------------------------- /src/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/src/middleware.js -------------------------------------------------------------------------------- /src/middleware/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/src/middleware/clean.js -------------------------------------------------------------------------------- /src/middleware/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/src/middleware/find.js -------------------------------------------------------------------------------- /src/middleware/setState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/src/middleware/setState.js -------------------------------------------------------------------------------- /src/middleware/simulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/src/middleware/simulate.js -------------------------------------------------------------------------------- /src/no-dom.js: -------------------------------------------------------------------------------- 1 | export default from './tests' 2 | -------------------------------------------------------------------------------- /src/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/src/tests.js -------------------------------------------------------------------------------- /tests/components/component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/components/component.jsx -------------------------------------------------------------------------------- /tests/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/components/index.js -------------------------------------------------------------------------------- /tests/components/other-component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/components/other-component.jsx -------------------------------------------------------------------------------- /tests/components/tiny-component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/components/tiny-component.jsx -------------------------------------------------------------------------------- /tests/element.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/element.jsx -------------------------------------------------------------------------------- /tests/find.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/find.jsx -------------------------------------------------------------------------------- /tests/full-dom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/full-dom.jsx -------------------------------------------------------------------------------- /tests/mixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/mixin.jsx -------------------------------------------------------------------------------- /tests/no-dom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/no-dom.jsx -------------------------------------------------------------------------------- /tests/renderToString.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/renderToString.jsx -------------------------------------------------------------------------------- /tests/setState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/setState.jsx -------------------------------------------------------------------------------- /tests/shallowRender.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/shallowRender.jsx -------------------------------------------------------------------------------- /tests/simulate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/tests/HEAD/tests/simulate.jsx --------------------------------------------------------------------------------