testeranto 0.222.2 → 0.222.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.
@@ -156,7 +156,7 @@ var rubyDockerComposeFile = (config, container_name, projectConfigPath, rubyConf
156
156
  };
157
157
  };
158
158
  var rubyBuildCommand = (projectConfigPath, rubyConfigPath, testName) => {
159
- return "cat node_modules/testeranto/dist/ruby/ruby.rb";
159
+ return "cat /workspace/node_modules/testeranto/dist/ruby/ruby.rb";
160
160
  };
161
161
  var rubyBddCommand = (fpath) => {
162
162
  const jsonStr = JSON.stringify({ ports: [1111] });
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "testeranto",
3
3
  "displayName": "Testeranto",
4
4
  "description": "the Dockerized, AI powered, BDD test framework for polyglot projects",
5
- "version": "0.222.2",
5
+ "version": "0.222.3",
6
6
  "engines": {
7
7
  "node": ">=20.19.0",
8
8
  "vscode": "^1.60.0"
@@ -32,7 +32,7 @@ export const rubyDockerComposeFile = (
32
32
  export const rubyBuildCommand = (projectConfigPath: string, rubyConfigPath: string, testName: string) => {
33
33
  // The testeranto source is mounted at /workspace/testeranto
34
34
  // return `ruby node_modules/testeranto/dist/ruby/ruby.rb /workspace/${rubyConfigPath} ${testName}`;
35
- return 'cat node_modules/testeranto/dist/ruby/ruby.rb'
35
+ return 'cat /workspace/node_modules/testeranto/dist/ruby/ruby.rb'
36
36
  }
37
37
 
38
38
  export const rubyBddCommand = (fpath: string) => {