https://github.com/orangecms/meteor-react-testing
A quick demo of an app stack with Meteor, React, npm, and testing with Chimp, Cucumber and Jasmine
https://github.com/orangecms/meteor-react-testing
Last synced: about 1 year ago
JSON representation
A quick demo of an app stack with Meteor, React, npm, and testing with Chimp, Cucumber and Jasmine
- Host: GitHub
- URL: https://github.com/orangecms/meteor-react-testing
- Owner: orangecms
- Created: 2016-04-03T17:01:16.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-07-20T20:22:41.000Z (almost 9 years ago)
- Last Synced: 2025-01-24T10:24:44.814Z (over 1 year ago)
- Language: JavaScript
- Size: 15.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
This is quick demo of testing an app stack with Meteor and React with Chimp, Cucumber and Jasmine.
Check out [Xolv.io's example](https://github.com/xolvio/automated-testing-best-practices) for reference.
## Quick installation
```
cd src && meteor npm i && meteor npm start
```
## Original project setup
Building up the stack is easily done in a few steps:
1. Create my-project
```bash
mkdir my-project
cd my-project
npm init
npm i --save --dev chimp cucumber
meteor create src
cd src
```
2. Remove insecure stuff and other useless junk we don't want
```bash
meteor remove autopublish insecure blaze-html-templates mobile-experience
```
3. Remove scaffolding files from the client
```bash
rm client/*.*
```
4. Kick off npm for Meteor and add React to the stack
```bash
meteor npm init
meteor npm i
meteor npm i --save react react-dom
```
## Go for it!
```
meteor npm start
```