Derek Onwudiwetecheffect.hashnode.dev·Aug 16, 2023Demystifying Penetration Testing: Safeguarding Your Digital Assetsdetailed breakdown of each step in the penetration testing process along with their explanations: Information Gathering: In this phase, the penetration tester collects as much information as possible about the target system or network. This can inclu...Discusspenetration testing
ZipyforZipy's team blogzipyteam.hashnode.dev·Aug 7, 2023React-testing-library Versus Enzyme: Which is the winner?Author - Aryan Raj Testing computer programs, especially ones written using React, can be tricky. However, opting for a React testing library can save you a lot of hassle. Enzyme and React-testing-library are two popular options out there. Enzyme has...DiscussReact
ZipyforZipy's team blogzipyteam.hashnode.dev·Aug 7, 2023React testing libraries: A comprehensive comparisonAuthor - Aryan Raj Software companies are striving to provide a seamless digital experience to their users, for which they are happily investing in research, development, and most importantly on testing. As per Stackshare report, almost 11000+ compan...Discuss·172 readsReact
Zuci Systemszuci.hashnode.dev·Jul 12, 2023How to Start Automation Testing from Scratch?Are you tired of manually testing your applications? Do you want to save time and increase efficiency in your software development process? Look no further than automation testing! In this blog post, we will guide you through the steps of starting au...Discuss·31 readsTesting
Alain IglesiasProblog.aiherrera.com·Jul 10, 2023Mastering Vite Application Testing with Vitest: A simple guide to prevent headachesIntroduction Vite, a modern front-end build tool, has been gaining popularity due to its fast and lean development experience. Paired with Vitest, a testing framework designed specifically for Vite, you can create a robust testing environment for you...Discuss·48 readsvite
Ákos KőművesProakoskm.com·Jul 8, 2023How to test a className with Jest and React testing libraryWhen testing JavaScript applications, one of the most common checks I see is if an element has a specific class or an element with some class has some text. Think of an Alert like this: <div role="alert" className="alert alert-error"> Something wen...Discuss·916 readsTesting ReactJest
Ákos KőművesProakoskm.com·Jun 13, 2023Test complex DOM structures with React Testing LibraryEstablishing sound software engineering principles in teams is one thing, but enforcing them is an entirely different problem to solve. Tools such as eslint, the TypeScritp compiler, or Prettier were the answers for coding conventions, types, and for...Discuss·22 likes·414 readsTesting ReactJest
Mustafa Dalgasft.hashnode.dev·Jun 13, 2023Debugging TypeScript & Jest-DOM Matchers in Vue.jsOne of the joys of modern web development is the seamless integration of various libraries and frameworks. However, every so often, you can run into hitches that send you down the rabbit hole of debugging. Today, I want to share a recent experience a...DiscussVue.jsJest
Elena MarinakiProelenamarinaki.hashnode.dev·Apr 21, 2023FeaturedDevelop and Test a UI component using React with VitestWhat we are going to build In this post, we are going to build an accordion with React and then test it with Vitest. This is how it looks like ⬇️ Repos You can access the code for this example here: CodeSandbox: https://codesandbox.io/p/sandbox/acc...Simone Aiello and 1 other are discussing this2 people are discussing thisDiscuss·55 likes·640 readsReact
Sachin ChaurasiyaforDeuex Solutions - Tech Blogblogs.deuexsolutions.com·Apr 5, 2023How to Test Custom Hook in ReactJSWhat is a custom hook? 🤔 Custom hooks in ReactJS are reusable pieces of code that encapsulate logic and state management. As developers, we need to ensure that these hooks work as intended and do not have any unintended side effects. This is where t...Discuss·20 likes·298 readsReact/React NativeReact