@testim/testim-cli 3.278.0 → 3.280.0
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/errors.js +8 -0
- package/npm-shrinkwrap.json +279 -618
- package/package.json +3 -4
- package/services/gridService.js +2 -2
- package/workers/BaseWorker.js +7 -2
package/errors.js
CHANGED
|
@@ -75,6 +75,13 @@ class GridError extends Error {
|
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
+
class GridConcurrencyError extends GridError {
|
|
79
|
+
constructor(message) {
|
|
80
|
+
super(message);
|
|
81
|
+
this.name = 'GridConcurrencyError';
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
78
85
|
/**
|
|
79
86
|
* NpmPackageError
|
|
80
87
|
*
|
|
@@ -141,6 +148,7 @@ module.exports = {
|
|
|
141
148
|
GetBrowserError,
|
|
142
149
|
PageNotAvailableError,
|
|
143
150
|
GridError,
|
|
151
|
+
GridConcurrencyError,
|
|
144
152
|
QuotaDepletedError,
|
|
145
153
|
NpmPackageError,
|
|
146
154
|
NpmPermissionsError,
|