Ask Your Question
3

How can one make sure that Playwright fails when encountering TypeScript errors?

asked 2022-01-05 11:00:00 +0000

qstack gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2021-05-02 11:00:00 +0000

david gravatar image

One way to make sure that Playwright fails when encountering TypeScript errors is to use a TypeScript compiler that has the --noEmit flag enabled. This flag prevents TypeScript from generating output files when there are errors, causing the build to fail.

To enable this flag, add the following script to your package.json file:

"scripts": {
  "build": "tsc --noEmit"
}

Then, use the npm run build command to build your project. If there are any TypeScript errors, the build will fail and Playwright will not execute.

Additionally, it is recommended to use a TypeScript linter such as eslint to catch errors earlier in the development process.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-01-05 11:00:00 +0000

Seen: 10 times

Last updated: May 02 '21