artes 1.6.2 → 1.6.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.
@@ -226,7 +226,7 @@ module.exports = {
226
226
  ? JSON.parse(process.env.MODE)
227
227
  : artesConfig?.headless !== undefined
228
228
  ? artesConfig.headless
229
- : true,
229
+ : false,
230
230
  slowMo: process.env.SLOWMO
231
231
  ? Number(process.env.SLOWMO) * 1000
232
232
  : artesConfig?.slowMo * 1000 || 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "artes",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "The simplest way to automate UI and API tests using Cucumber-style steps.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -43,9 +43,8 @@ function createProject(createYes, noDeps) {
43
43
  fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));
44
44
 
45
45
  const config = `module.exports = {
46
- headless: false, // Set to true for headless browser mode
47
-
48
46
  // Configuration options:
47
+ // headless: false, // Set to true for headless browser mode
49
48
  // env: "", // string - Environment name for tests
50
49
  // variables: {} // object - Variables for tests
51
50
  // testPercentage: 0, // number - Minimum success rate percentage(Default: 0)