@empiricalrun/test-gen 0.78.7 → 0.79.0
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/CHANGELOG.md +11 -0
- package/dist/bin/utils/platform/web/index.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -25,7 +25,7 @@ exports.buildTestNamePrompt = buildTestNamePrompt;
|
|
|
25
25
|
exports.getVariableDeclarationsFromCode = getVariableDeclarationsFromCode;
|
|
26
26
|
exports.isSyntaxValid = isSyntaxValid;
|
|
27
27
|
const parser_1 = require("@babel/parser");
|
|
28
|
-
const
|
|
28
|
+
const cmd_1 = require("@empiricalrun/test-run/cmd");
|
|
29
29
|
const eslint_1 = require("eslint");
|
|
30
30
|
const fs_1 = __importDefault(require("fs"));
|
|
31
31
|
const path_1 = __importDefault(require("path"));
|
|
@@ -203,7 +203,7 @@ function appendToTestBlock(testBlock, content) {
|
|
|
203
203
|
return updateTestBlock;
|
|
204
204
|
}
|
|
205
205
|
async function runTypescriptCompiler(repoDir) {
|
|
206
|
-
let { code, output } = await (0,
|
|
206
|
+
let { code, output } = await (0, cmd_1.spawnCmd)("npx", ["tsc", "--incremental", "--noEmit", "--pretty"], {
|
|
207
207
|
cwd: repoDir,
|
|
208
208
|
envOverrides: {},
|
|
209
209
|
captureOutput: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empiricalrun/test-gen",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.79.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"@empiricalrun/ast-parser": "^0.0.10",
|
|
91
91
|
"@empiricalrun/llm": "^0.25.1",
|
|
92
92
|
"@empiricalrun/r2-uploader": "^0.9.0",
|
|
93
|
-
"@empiricalrun/test-run": "^0.
|
|
93
|
+
"@empiricalrun/test-run": "^0.14.0",
|
|
94
94
|
"videostil": "0.3.3"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|