@empiricalrun/test-gen 0.38.49 → 0.38.50

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,11 @@
1
1
  # @empiricalrun/test-gen
2
2
 
3
+ ## 0.38.50
4
+
5
+ ### Patch Changes
6
+
7
+ - 5826c61: fix: supporting streaming for headed mode for playwright tests
8
+
3
9
  ## 0.38.49
4
10
 
5
11
  ### Patch Changes
@@ -45,7 +45,7 @@ async function generateTestsUsingMasterAgent({ testFilePath, filePathToUpdate, p
45
45
  if (!isTestRunTriggeredForTeardown) {
46
46
  await teardowns.skipAll();
47
47
  }
48
- let command = `npx playwright test ${testFilePath} --retries 0 --project ${project} --timeout 0`;
48
+ let command = `DISPLAY=:99 npx playwright test ${testFilePath} --retries 0 --project ${project} --timeout 0`;
49
49
  if (!process.env.CI) {
50
50
  command = command.concat(` --headed`);
51
51
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/test-gen",
3
- "version": "0.38.49",
3
+ "version": "0.38.50",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"