Testing

Information technology best practices

What is SDLC? SDLC stands for Software Development Life Cycle, which is a process used by software development teams to plan, design, build, test, and deploy software applications. SDLC is a systematic and structured approach to software development that provides a framework for managing the entire process from start to finish. There are several different […]

Information technology best practices Read More »

Javascript security vulnerabilities checklist

Tools to check javascript security vulnerabilities 1) npm installIf you are using npm install in your application, make sure you keep all packages updated to the latest versions. 2) Snyk toolYou can signup for Synk tool for free and add repo to check issues.Synk can be integrated with Github repository and it can create pull

Javascript security vulnerabilities checklist Read More »

How to install laravel dusk to do browser testing for your application?

Laravel Dusk provides an easy-to-use browser automation using chromedriver installation. Install composer dependency for your application Now execute below artisan command Set the APP_URL env variable in the .env file. This value should match the URL you use to access your application in a browser. Create a test Run test This will run the test

How to install laravel dusk to do browser testing for your application? Read More »