@probolabs/playwright 1.5.0-rc.3 → 1.5.0-rc.4
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/dist/.tsbuildinfo +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -5267,10 +5267,10 @@ class ProboPlaywright {
|
|
|
5267
5267
|
}
|
|
5268
5268
|
break;
|
|
5269
5269
|
case PlaywrightAction.GEN_TOTP:
|
|
5270
|
-
// Use secret from argument and auxiliary config (digits/algorithm) from totpConfig
|
|
5270
|
+
// Use secret from argument (interpolated above) and auxiliary config (digits/algorithm) from totpConfig
|
|
5271
5271
|
// If totpConfig is not provided, use defaults (digits: 6, algorithm: 'SHA1')
|
|
5272
5272
|
const totpAux = params.totpConfig;
|
|
5273
|
-
const secretArg =
|
|
5273
|
+
const secretArg = argument;
|
|
5274
5274
|
if (secretArg) {
|
|
5275
5275
|
try {
|
|
5276
5276
|
// Use provided config or defaults
|