Author: Animesh Pathak
-
API integration – Importance and Best Practices
In today’s digital world, applications need to communicate with each other to provide users with seamless experiences. This communication is often made possible through APIs (Application Programming Interfaces). API integration is a process where different software systems are connected using APIs, allowing them to share data and functionalities. Let’s delve deeper into what API integration…
-
How to compare two JSON files?
As a developer, you usually work with JSON data, and may need to compare JSON files. This might involve checking a list of products from the database against a previous version or comparing an updated user profile returned by your REST API with the original data sent to the server. In this article, we’ll explore…
-
Learn to add comments to JSON
JSON or JavaScript Object Notation is a popular data interchange format used by developers to store and exchange data. It’s lightweight, easy to read, and easy to parse, making it ideal for various applications. However, one of the notable limitations of JSON is that it doesn’t support comments natively. This can be a problem when…
-
Exploring Cypress and Keploy: Streamlining Test Automation
As an Automation Enthusiats exploring in the realm of software testing, I’ve traversed a various tools and frameworks aimed at enhancing test automation processes. Because as the landscape of software testing continues to evolve, the demand for efficient and reliable test automation solutions has never been higher. Among these, Cypress and Keploy emerge as standout…
-
Testing BunJs Web Application with Cucumber JS and Keploy
In our previous blog, we explored how to build a modern web server using BunJs and Prisma, integrating robust authentication mechanisms with JWT tokens. Now, it’s time to ensure our application is reliable and error-free through thorough testing. In this blog, we’ll dive into testing methodologies using Cucumber JS and Keploy, both are a powerful…
-
Build an HTTP server using BunJs and Prisma
In this guide, we’ll be leveraging two powerful tools: BunJs and Prisma. Together, they provide a robust foundation for constructing modern, scalable, and efficient web servers. But before we dive into the technical details, let’s take a moment to understand what BunJs and Prisma bring to the table.Why use BunJs? BunJs is a really lightweight,…
-
How I simulated a response from a Third Party app
Whether you’re building a web application, a mobile app, or any other software product, integrating with third-party APIs is almost inevitable. But what happens when you need to test your application’s behavior without relying on these external services? That’s where the magic of simulation comes in handy. In this blog, we’ll explore how you can…
-
Why I Switched to Table Driven Testing approach in Go
Unit Testing, specifically table driven tests, have gained significant popularity in recent years due to their ability to eliminate repetition and enhance test clarity and maintainability. By organizing test cases into a structured format, table driven tests provide a systematic way to reuse the same values across different unit testing scenarios efficiently. What is Table…
-
Canary Testing: A Comprehensive Guide for Developers
What’s Canary Testing, Anyway? Imagine you’re a miner with a canary in a cage. If the air is toxic, the canary reacts first, giving you a heads-up. Canary testing works similarly for your software. Instead of releasing the whole flock (users) into a potentially toxic or buggy environment, you release just one canary (a small…
-
Writing test cases for Cron Job Testing
Understanding Cron Jobs: A Quick Recap Cron is a time-based job scheduler in Unix-like operating systems. It allows you to schedule tasks (or jobs) to run at specified intervals. Now, let’s get down to business – testing these Cron jobs to make sure they’re doing what they’re supposed to do. How can you be certain…