"jest": { "preset": "jest-playwright-preset" } or with jest.config.js:module.exports = { preset: 'jest-playwright-preset', } And add the Jest command as in the script section of your package.json:{ "scripts": { "test": "jest" } }...