@empiricalrun/test-gen 0.53.0 → 0.53.1

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @empiricalrun/test-gen
2
2
 
3
+ ## 0.53.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [40fcbc2]
8
+ - @empiricalrun/llm@0.14.1
9
+
3
10
  ## 0.53.0
4
11
 
5
12
  ### Minor Changes
@@ -98,7 +98,7 @@ async function replaceTodoWithCreateTest({ testFilePath, testCaseName, testCaseS
98
98
  throw new Error(`No "// TODO(agent):" comment found in file: ${testFilePath}`);
99
99
  }
100
100
  // TODO: figure out correct page variable name
101
- await fs_extra_1.default.writeFile(testFilePath, fileContent.replace(todoRegex, (_, todoText) => `await createTest("${todoText.replace(/"/g, '\\"')}", extPage);`));
101
+ await fs_extra_1.default.writeFile(testFilePath, fileContent.replace(todoRegex, (_, todoText) => `await createTest("${todoText.replace(/"/g, '\\"')}", page);`));
102
102
  await addImportForCreateTest(testFilePath);
103
103
  await markTestAsOnly({
104
104
  testCaseName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/test-gen",
3
- "version": "0.53.0",
3
+ "version": "0.53.1",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -68,7 +68,7 @@
68
68
  "tsx": "^4.16.2",
69
69
  "typescript": "^5.3.3",
70
70
  "zod": "^3.23.8",
71
- "@empiricalrun/llm": "^0.14.0",
71
+ "@empiricalrun/llm": "^0.14.1",
72
72
  "@empiricalrun/r2-uploader": "^0.3.8",
73
73
  "@empiricalrun/test-run": "^0.7.6"
74
74
  },