Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • C create-react-app
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1,547
    • Issues 1,547
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 417
    • Merge requests 417
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Meta
  • create-react-app
  • Merge requests
  • !3541

keep node_env if provided from upstream

  • Review changes

  • Download
  • Email patches
  • Plain diff
Closed Administrator requested to merge github/fork/DianaSuvorova/startNodeEnv into master Dec 03, 2017
  • Overview 5
  • Commits 1
  • Pipelines 0
  • Changes 1

Created by: DianaSuvorova

Hello, this is tiny configuration that would allow the use of react-script start for browser e2e tests.

  "scripts": {
    "start": "react-scripts start",
    "start:test": "NODE_ENV=test react-scripts start",
...

So then inside index.js I could decide wether it is a dev build or integration test build.


if (process.env.NODE_ENV === 'test') {
  Enzyme.configure({ adapter: new Adapter() });

  const wrap = (<Provider store={store}><App />< /Provider>);

  const el = Enzyme.mount(wrap,
    { attachTo: document.getElementById('root') }
  );
  iTest(el);
} else {
  ReactDOM.render(
    <Provider store={store}>
      <App />
    </Provider>,
    document.getElementById('root')
  );
}

More details here: https://github.com/DianaSuvorova/Demo-project/blob/master/frontend/package.json https://github.com/DianaSuvorova/Demo-project/blob/master/frontend/src/index.js

Thanks, Diana

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: github/fork/DianaSuvorova/startNodeEnv