+ Let's talk about regression testing! +
++ Let's talk about regression testing! +
++ Contribute code to Keploy or report a bug +
++ Connect and chat with other Keploy users +
++ Learn with Keploy team and community videos +
++ {" "} + Follow us and connect with other Keploy engineers! +
+Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat.
+Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat.
+Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat.
+Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat.
+Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat.
+Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat.
+Learn from each other, move forward together, and celebrate what’s next. Whether you’re a developer, architect, tester, community manager, or something in-between, you’ll…
+Learn about the latest trends in open source and open technologies
+Face-to-face problem-solving, discussions, and collaboration
+Access to experts to help guide you through a complex OS environment
+Discover what other companies and projects are working on
+Explore career opportunities with the world’s leading technology companies
+Gain advantage by learning about the latest in innovative open solutions
+Our landing page template works on all devices, so you only have to set it up once, and get beautiful results forever.
*/} + +Join our event newsletter to register before anyone else.
++ Please reach out to if you need to register as a Sponsor, email us - devrel[at]keploy[dot]io +
+— Open PRO lets me quickly get the insights I care about so that I can focus on my productive work. I've had Open PRO for about 24 hours now and I honestly don't know how I functioned without it before.*/} + {/*
— Open PRO lets me quickly get the insights I care about so that I can focus on my productive work. I've had Open PRO for about 24 hours now and I honestly don't know how I functioned without it before.*/} + {/*
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
++ simplified testing, capturing network interactions and generating + automated tests +
++ Accelerate development with streamlined testing, capturing + network calls, automating scenarios, and seamless tool + integration. +
+
+
+ $ curl -O
+ https://raw.githubusercontent.com/keploy/keploy/main/keploy.sh
+ && source keploy.sh
+
+
+
+
+ $ curl -O
+ https://raw.githubusercontent.com/keploy/keploy/main/keploy.sh
+ && source keploy.sh
+
+
+ + 2 minutes to 90% test coverage! +
++ Open source Tool for converting user-traffic to Test Cases and Data Stubs +
+
+
+
+
+
+ + “Makes it easy to unit test my complex systems with realistic test data“ ++ Staff Engineer +
+ - Share Your Application Dependencies with us! +
++ - Choose any backend application with the LOWEST Test Coverage! +
+
+ - Our team will determine if Keploy can generate your API tests.
+ If we can!! you can keep the tests.
+ If we can’t, you get $100.
+
Unseen network calls hinder testing and analysis of software behavior.
+Time-consuming, repetitive to maintain test automation suites.
+Underperforming code leading to critical problems and inefficiencies.
+Tedious stubs and mocks maintenance for testing purpose.
+Difficult-to-reproduce production issues locally for testing and debugging.
+Multiple env complicates testing, stub preparation and are unrealistic.
++ {testimonial.content} ++ + {testimonial.author} + +
*/} + {/* “ Our recent collaboration with Keploy was truly remarkable.*/} + {/* Executive Member*/} + {/*
Keploy team provided exceptional support and remained highly proactive throughout the entire experience.*/} + {/*
Keploy platform has added business value to Maruti Suzuki “*/} + {/*
{children}
++ {Intl.NumberFormat().format(number)} +
+ ); +} \ No newline at end of file diff --git a/components/utils/dropdown.tsx b/components/utils/dropdown.tsx new file mode 100644 index 00000000..89f45519 --- /dev/null +++ b/components/utils/dropdown.tsx @@ -0,0 +1,52 @@ +'use client' + +import { useState } from 'react' +import { Transition } from '@headlessui/react' + +type DropdownProps = { + children: React.ReactNode + title: string +} + +export default function Dropdown({ + children, + title +}: DropdownProps) { + + const [dropdownOpen, setDropdownOpen] = useState