quality-intelligence-engine 2.2.12 → 2.2.15
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/qi.js +2 -1
- package/package.json +1 -2
package/dist/bin/qi.js
CHANGED
|
@@ -16,7 +16,8 @@ async function main() {
|
|
|
16
16
|
// Resolve project root (works after npm install)
|
|
17
17
|
const projectRoot = path_1.default.resolve(__dirname, "..");
|
|
18
18
|
// IMPORTANT: call compiled JS, never TS
|
|
19
|
-
|
|
19
|
+
// dist/final-run.js EXISTS in published package
|
|
20
|
+
const finalRunPath = path_1.default.join(projectRoot, "final-run.js");
|
|
20
21
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
21
22
|
const { runFinal } = require(finalRunPath);
|
|
22
23
|
runFinal(playwrightResultsDir, showIssues);
|
package/package.json
CHANGED