browsertime 15.0.0 → 15.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/lib/core/engine/iteration.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 15.0.1 - 2022-02-21
|
|
4
|
+
### Fixed
|
|
5
|
+
* Make sure connectivity is only set before the test begins [#1733](https://github.com/sitespeedio/browsertime/pull/1733).
|
|
3
6
|
## 15.0.0 - 2022-02-20
|
|
4
7
|
### Changed
|
|
5
8
|
* Removed the built in support for TSProxy [#1718](https://github.com/sitespeedio/browsertime/pull/1718). TSProxy only worked with Python 2.7 and we want to remove that dependency.
|
|
@@ -105,7 +105,9 @@ class Iteration {
|
|
|
105
105
|
if (!options.disableDNSFlush === true) {
|
|
106
106
|
await flushDNS(options);
|
|
107
107
|
}
|
|
108
|
-
|
|
108
|
+
if (options.connectivity && options.connectivity.variance) {
|
|
109
|
+
await addConnectivity(options);
|
|
110
|
+
}
|
|
109
111
|
|
|
110
112
|
await engineDelegate.beforeBrowserStart();
|
|
111
113
|
await browser.start();
|