testdriverai 5.6.0 → 5.6.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.
Files changed (2) hide show
  1. package/lib/parser.js +0 -3
  2. package/package.json +1 -1
package/lib/parser.js CHANGED
@@ -25,10 +25,7 @@ function formatAjvError(error) {
25
25
  // use markdown parser to find code blocks within AI response
26
26
  const findCodeBlocks = async function (markdownContent) {
27
27
 
28
- console.log(markdownContent)
29
-
30
28
  let md = markdownContent.match(/```yaml\n([\s\S]*?)```/);
31
- console.log('returning')
32
29
 
33
30
  if (md) {
34
31
  return [{code: md[1]}];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "5.6.0",
3
+ "version": "5.6.1",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "index.js",
6
6
  "bin": {