Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 1.03 KB

FAQs.md

File metadata and controls

26 lines (18 loc) · 1.03 KB

Frequently Asked Questions

Q1: How do we fix the dependency errors while installing packages?

A: Remove the node_modules and package-lock.json from the project and install the packages again. This step will help in resolving potential conflicts or issues with dependencies.

rm -rf node_modules package-lock.json
npm install

Alternatively, you can run the following command, which is a custom script configured in package.json to perform the same.

npm run ready

Q2: How do we fix the import errors with alias paths?

A: Delete the dist folder containing the js compiled files as Playwright handles the typescript compilation internally and this should eliminate the conflict.