Test workspaces
One way to keep things tidy when dealing with a lot of tests is to use different workspaces. We recommend one workspace per app. Workspaces also enable versioning of your tests via git or some other versioning tool.
The place of your workspace directory is indicated below the main menu:

A workspace is a normal file directory. It can contain a couple of different files:
- a “tests” directory, containing one sub directory for each test
- a “batchRuns” directory, containing all the batch run reports you exported
- a “database.rpt” file, which holds information such as your library structure or how your batches are organized
- a “backup” directory, containing some backed up versions of your database.rpt file
- a “.gitignore” file, that you can use to exclude files in case you don’t want so sync certain files
How to create a new workspace
Section titled “How to create a new workspace”- Create a new directory (with windows explorer / mac finder)
- Open repeato and select “File/Open workspace”
- In the dialog, choose the directory (the one you created in step 1)
- Repeato will initialize the directory as workspace and save some meta data in there
Every test you record will end up in this workspace directory.
To benefit from versioning, just create a git repository inside of this directory.
We have more documentation on how to sync your workspace with your team here.