Skip to main content
July 16, 2023
Solved

Is the answer development or staging?

  • July 16, 2023
  • 2 replies
  • 0 views

A feature is being deployed to the test environment.
In which environment is unit testing performed for the feature?

    Best answer by mathieud0001

    Testing is where integrated tests should be performed.

    Unit testing should technically be done in dev and then validated to make sure they pass in every environment you deploy to.

    The staging environment for me serves as a place to test your deployment as well as serving as an environment to develop hot fixes if you are deep into feature development in your dev/test environments.

    2 replies

    mathieud0001
    Brainy
    July 16, 2023

    Testing is where integrated tests should be performed.

    Unit testing should technically be done in dev and then validated to make sure they pass in every environment you deploy to.

    The staging environment for me serves as a place to test your deployment as well as serving as an environment to develop hot fixes if you are deep into feature development in your dev/test environments.

    July 16, 2023

    Got it! Thank you Mathieu!