Security Testing
SOX Compliance Automated Testing Strategies
The Sarbanes-Oxley Act (SOX) requires public companies to maintain accurate financial reporting and demonstrate effective internal controls.
In-depth tutorials and comparisons for testing tools and frameworks — Playwright, Cypress, Selenium, Robot Framework, and more.
Security Testing
The Sarbanes-Oxley Act (SOX) requires public companies to maintain accurate financial reporting and demonstrate effective internal controls.
Security Testing
The NIST Cybersecurity Framework (CSF) provides a flexible structure for managing cybersecurity risk.
Security Testing
FIPS 140-2 (and its successor FIPS 140-3) defines security requirements for cryptographic modules used in federal systems.
Security Testing
FedRAMP (Federal Risk and Authorization Management Program) is the U.S. federal government's standard for cloud service security.
Visual Testing
Reg-Suit is a visual regression testing framework built around a plugin architecture.
Visual Testing
Loki is a visual regression testing tool purpose-built for Storybook. It runs locally and in CI, captures screenshots of every story, compares them against stored references, and shows diffs when components change. Unlike cloud-hosted alternatives, Loki stores reference images in your repository and runs entirely offline. Why Loki
Visual Testing
Happo solves a specific problem: visual regression testing across multiple browsers simultaneously.
Visual Testing
Visual regression testing catches UI changes that unit tests miss. Lost Pixel is an open-source visual regression testing platform that compares screenshots of components or pages across commits, flags differences, and integrates with your existing CI pipeline. Unlike hosted-only tools, Lost Pixel can run entirely in your own
Clojure
re-frame's unidirectional data flow — events → effects → db → subscriptions → views — makes applications predictable. It also makes them testable.
Clojure
Example-based tests check specific cases. Property-based tests check invariants across hundreds of randomly generated inputs.
Clojure
Kaocha is the most flexible test runner in the Clojure ecosystem. While lein test and clojure -M:test get you started, Kaocha gives you fine-grained control over test selection, execution order, output formatting, and extensibility through plugins. This guide covers advanced Kaocha configuration for teams that need more than
Test Automation
Testing effectful Haskell code is where the language's type system earns its reputation.