@yasserkhanorg/e2e-agents 1.1.2 → 1.1.3
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/agent/git.d.ts.map +1 -1
- package/dist/agent/git.js +5 -1
- package/dist/esm/agent/git.js +5 -1
- package/package.json +1 -1
package/dist/agent/git.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"git.d.ts","sourceRoot":"","sources":["../../src/agent/git.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"git.d.ts","sourceRoot":"","sources":["../../src/agent/git.ts"],"names":[],"mappings":"AAyGA,MAAM,WAAW,eAAe;IAC5B,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,YAAY,GAAG,QAAQ,CAAC;CAC1C;AAED,MAAM,WAAW,gBAAgB;IAC7B,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAChC;AA8CD,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,gBAAgB,GAAG,eAAe,CA2C3G"}
|
package/dist/agent/git.js
CHANGED
|
@@ -5,13 +5,17 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.getChangedFiles = getChangedFiles;
|
|
6
6
|
const child_process_1 = require("child_process");
|
|
7
7
|
const utils_js_1 = require("./utils.js");
|
|
8
|
-
// Directories that contain CI/tooling/docs — never relevant to impact analysis.
|
|
8
|
+
// Directories that contain CI/tooling/docs/tests — never relevant to impact analysis.
|
|
9
9
|
const IGNORED_DIR_SEGMENTS = [
|
|
10
10
|
'.github',
|
|
11
11
|
'.claude',
|
|
12
12
|
'.vscode',
|
|
13
13
|
'.idea',
|
|
14
14
|
'node_modules',
|
|
15
|
+
'e2e-tests',
|
|
16
|
+
'__tests__',
|
|
17
|
+
'__mocks__',
|
|
18
|
+
'testlib',
|
|
15
19
|
];
|
|
16
20
|
// Exact filenames (basename) that are never relevant.
|
|
17
21
|
const IGNORED_BASENAMES = new Set([
|
package/dist/esm/agent/git.js
CHANGED
|
@@ -2,13 +2,17 @@
|
|
|
2
2
|
// See LICENSE.txt for license information.
|
|
3
3
|
import { spawnSync } from 'child_process';
|
|
4
4
|
import { normalizePath } from './utils.js';
|
|
5
|
-
// Directories that contain CI/tooling/docs — never relevant to impact analysis.
|
|
5
|
+
// Directories that contain CI/tooling/docs/tests — never relevant to impact analysis.
|
|
6
6
|
const IGNORED_DIR_SEGMENTS = [
|
|
7
7
|
'.github',
|
|
8
8
|
'.claude',
|
|
9
9
|
'.vscode',
|
|
10
10
|
'.idea',
|
|
11
11
|
'node_modules',
|
|
12
|
+
'e2e-tests',
|
|
13
|
+
'__tests__',
|
|
14
|
+
'__mocks__',
|
|
15
|
+
'testlib',
|
|
12
16
|
];
|
|
13
17
|
// Exact filenames (basename) that are never relevant.
|
|
14
18
|
const IGNORED_BASENAMES = new Set([
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yasserkhanorg/e2e-agents",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "AI-powered E2E test impact analysis, generation, and healing. Analyzes code changes to identify affected Playwright tests, detects coverage gaps, and generates or repairs specs using pluggable LLM providers (Claude, OpenAI, Ollama). Includes MCP server, traceability, and CI/CD integration.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|