You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Final values, that will be used by VisualRegressionTracker, will be resolved as following:
107
-
> 1. Check if it was provided while creating or building VisualRegressionTrackerConfig
108
-
> 2. If not, try to find the environment variable
109
-
> 3. Get it from the configuration file (if it exists)
110
-
108
+
> 1. If explicitly set while creating `VisualRegressionTrackerConfig` - use this value
109
+
> 2. Use value from environment variable if it exists
110
+
> 3. Try to get it from the configuration file
111
111
112
+
<br />
112
113
113
114
114
115
### Create an instance of `VisualRegressionTracker`
@@ -126,13 +127,27 @@ VisualRegressionTracker visualRegressionTracker = new VisualRegressionTracker();
126
127
> [!TIP]
127
128
> If config is not provided explicitly, it will be created based on the environment variables or configuration file. Please see [Configuration](README.md#configuration) section
128
129
130
+
<br />
131
+
132
+
### Start `VisualRegressionTracker`
133
+
134
+
```java
135
+
visualRegressionTracker.start();
136
+
```
137
+
138
+
At that point VisualRegressionTracker will try to create a new build for provided project. All of the subsequent tracked screenshots are going to be included in that build.
0 commit comments