added

Snapshot test version on deployment

When you tell mabl about a deployment of your application, you can now choose to snapshot the current version of your tests onto that environment. This will associate the current versions of your tests with the environment. Until your next deployment, all tests run against this environment will default to using the snapshotted version of tests and ignore any test updates. This can be extraordinarily useful if you have an early environment that always runs the latest tests and code but also run tests against a deployed environment, running an older deployed version of code. With snapshotting, you can progress your mabl tests alongside your code through multiple environments.

To use the snapshotting feature, see the following commands

mabl deployments create -e abcd-e --snapshot-from master
curl -s 'https://api-dev.mabl.com/events/deployment' \
     -u 'key:9ms0eO_3MCQCtgv_qEnO9Q' \
     -H 'Content-Type:application/json' \
     -d '{"environment_id":"uAWvHeRoFUVAOhRoaI80OA-e", "actions": {"snapshot": {"from": "master"}}}'

For more details, see the help docs