From 43c52c6a7ee757d65f4db805472a66c5d55feb3a Mon Sep 17 00:00:00 2001 From: Roman Kuznetsov Date: Thu, 16 Jan 2025 02:30:56 +0300 Subject: [PATCH] fix: populate plugin parsed config to testplane config --- plugin.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin.js b/plugin.js index 1e013ee..364de38 100644 --- a/plugin.js +++ b/plugin.js @@ -7,6 +7,8 @@ const parseConfig = require('./lib/config'); module.exports = (testplane, opts) => { const config = parseConfig(opts); + Object.assign(opts, config); + if (!config.enabled) { return; }