testdriverai 4.0.10 → 4.0.11

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/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Next generation autonomous AI agent for end-to-end testing of web & desktop
6
6
 
7
- [Docs](https://docs.testdriver.ai) | [Website](https://testdriver.ai) | [GitHub Action](https://github.com/marketplace/actions/testdriver-ai) | [Join our Discord](https://discord.gg/ZjhBsJc5)
7
+ [Docs](https://docs.testdriver.ai) | [Website](https://testdriver.ai) | [GitHub Action](https://github.com/marketplace/actions/testdriver-ai) | [Join our Discord](https://discord.gg/22RdN6tp)
8
8
 
9
9
  ----
10
10
 
package/lib/init.js CHANGED
@@ -61,7 +61,7 @@ module.exports = async () => {
61
61
  console.log('')
62
62
  console.log(chalk.dim('This is a preview of the Testdriver.ai'));
63
63
  console.log(chalk.dim('Please report any issues in our Discord server: '));
64
- console.log(chalk.dim('https://discord.gg/3Q3QkZ2'));
64
+ console.log(chalk.dim('https://discord.gg/22RdN6tp'));
65
65
  console.log('')
66
66
  console.log('Beginning setup...')
67
67
  console.log('')
@@ -131,6 +131,11 @@ module.exports = async () => {
131
131
  }
132
132
  });
133
133
 
134
+ // Create a folder named "testdriver" if it doesn't exist
135
+ const testdriverFolder = path.join(process.cwd(), 'testdriver');
136
+ if (!fs.existsSync(testdriverFolder)) {
137
+ fs.mkdirSync(testdriverFolder);
138
+ }
134
139
  }
135
140
 
136
141
  console.log('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "4.0.10",
3
+ "version": "4.0.11",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "index.js",
6
6
  "bin": {