skip to Main Content

first test

I try to create a test with Playwright, but the result is always Error: No tests found
Even though I followed all the steps to create it properly it resulted in an Error message in the terminal as you can see in the screenshot… I can’t even guess what can be the problem, I am completely new to this…

{
  "name": "playwright-course",
  "version": "1.0.0",
  "description": "playwright course",
  "main": "index.js",
  "scripts": {
    "test": "echo "Error: no test specified" && exit 1"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@playwright/test": "^1.39.0"
  }
}
{
  "name": "playwright-course",
  "version": "1.0.0",
  "lockfileVersion": 3,
  "requires": true,
  "packages": {
    "": {
      "name": "playwright-course",
      "version": "1.0.0",
      "license": "ISC",
      "devDependencies": {
        "@playwright/test": "^1.39.0"
      }
    },
    "node_modules/@playwright/test": {
      "version": "1.39.0",
      "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.39.0.tgz",
      "integrity": "sha512-3u1iFqgzl7zr004bGPYiN/5EZpRUSFddQBra8Rqll5N0/vfpqlP9I9EXqAoGacuAbX6c9Ulg/Cjqglp5VkK6UQ==",
      "dev": true,
      "dependencies": {
        "playwright": "1.39.0"
      },
      "bin": {
        "playwright": "cli.js"
      },
      "engines": {
        "node": ">=16"
      }
    },
    "node_modules/fsevents": {
      "version": "2.3.2",
      "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
      "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
      "dev": true,
      "hasInstallScript": true,
      "optional": true,
      "os": ["darwin"],
      "engines": {
        "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
      }
    },
    "node_modules/playwright": {
      "version": "1.39.0",
      "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.39.0.tgz",
      "integrity": "sha512-naE5QT11uC/Oiq0BwZ50gDmy8c8WLPRTEWuSSFVG2egBka/1qMoSqYQcROMT9zLwJ86oPofcTH2jBY/5wWOgIw==",
      "dev": true,
      "dependencies": {
        "playwright-core": "1.39.0"
      },
      "bin": {
        "playwright": "cli.js"
      },
      "engines": {
        "node": ">=16"
      },
      "optionalDependencies": {
        "fsevents": "2.3.2"
      }
    },
    "node_modules/playwright-core": {
      "version": "1.39.0",
      "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.39.0.tgz",
      "integrity": "sha512-+k4pdZgs1qiM+OUkSjx96YiKsXsmb59evFoqv8SKO067qBA+Z2s/dCzJij/ZhdQcs2zlTAgRKfeiiLm8PQ2qvw==",
      "dev": true,
      "bin": {
        "playwright-core": "cli.js"
      },
      "engines": {
        "node": ">=16"
      }
    }
  }
}

2

Answers


  1. Just make small change in your command,

    npx playwright test
    
    Login or Signup to reply.
  2. Can you change this in your package.json:

     "scripts": {
        "test": "npx playwright test"
      },
    

    and then run from command prompt (from inside project root folder):

    npm run test
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search