testeranto 0.222.0 → 0.222.2
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
|
|
159
|
+
return "cat 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.
|
|
5
|
+
"version": "0.222.2",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=20.19.0",
|
|
8
8
|
"vscode": "^1.60.0"
|
|
@@ -384,4 +384,4 @@
|
|
|
384
384
|
"cucumber",
|
|
385
385
|
"ATDD"
|
|
386
386
|
]
|
|
387
|
-
}
|
|
387
|
+
}
|
|
@@ -15,6 +15,7 @@ export const rubyDockerComposeFile = (
|
|
|
15
15
|
container_name,
|
|
16
16
|
environment: {
|
|
17
17
|
NODE_ENV: "production",
|
|
18
|
+
|
|
18
19
|
...config.env,
|
|
19
20
|
},
|
|
20
21
|
working_dir: "/workspace",
|
|
@@ -30,7 +31,8 @@ export const rubyDockerComposeFile = (
|
|
|
30
31
|
|
|
31
32
|
export const rubyBuildCommand = (projectConfigPath: string, rubyConfigPath: string, testName: string) => {
|
|
32
33
|
// The testeranto source is mounted at /workspace/testeranto
|
|
33
|
-
return `ruby /
|
|
34
|
+
// return `ruby node_modules/testeranto/dist/ruby/ruby.rb /workspace/${rubyConfigPath} ${testName}`;
|
|
35
|
+
return 'cat node_modules/testeranto/dist/ruby/ruby.rb'
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
export const rubyBddCommand = (fpath: string) => {
|