@browsermation/test 0.0.45 → 0.0.47
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/bin/cli.js +1 -1
- package/dist/index.js +6 -1
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -42258,7 +42258,7 @@ var {
|
|
|
42258
42258
|
// package.json
|
|
42259
42259
|
var package_default = {
|
|
42260
42260
|
name: "@browsermation/test",
|
|
42261
|
-
version: "0.0.
|
|
42261
|
+
version: "0.0.47",
|
|
42262
42262
|
description: "The testing platform for Playwright by Browsermation.",
|
|
42263
42263
|
main: "./dist/index.js",
|
|
42264
42264
|
types: "./dist/index.d.ts",
|
package/dist/index.js
CHANGED
|
@@ -645,7 +645,7 @@ async function defineConfig(config) {
|
|
|
645
645
|
tunnel: Array.isArray(config.webServer) ? config.webServer.find((server) => server.port)?.port : config.webServer.port
|
|
646
646
|
}));
|
|
647
647
|
}
|
|
648
|
-
|
|
648
|
+
const bmConfig = {
|
|
649
649
|
...config,
|
|
650
650
|
use: {
|
|
651
651
|
...config.use,
|
|
@@ -655,6 +655,11 @@ async function defineConfig(config) {
|
|
|
655
655
|
}
|
|
656
656
|
}
|
|
657
657
|
};
|
|
658
|
+
if (process.env.BM_DEBUG) {
|
|
659
|
+
console.log(source_default.yellow.bold("\u{1F527} BM_DEBUG is enabled. Configuration:"));
|
|
660
|
+
console.dir(bmConfig, { depth: null });
|
|
661
|
+
}
|
|
662
|
+
return bmConfig;
|
|
658
663
|
}
|
|
659
664
|
|
|
660
665
|
// node_modules/@playwright/test/index.mjs
|