Skip to main content

Image Snapshot testing with Cypress

· 9 min read
Pascal Spadone
Software Engineer

Unit tests, integration tests, end-to-end tests — like many modern development teams, at Pigment, we rely heavily on these methods to minimize the risk of functional regressions in our codebase. In this post, we'll explore how we added image snapshots to our Cypress end-to-end tests as an extra safeguard for catching visual regressions.

From Zero to Millions — Inside Pigment’s Tech Team, Real-Time and Scaling Challenges

· One min read
Chaimaa El Hassani
Engineering Program Manager
Benjamin Hewins
Software Engineer

Our R&D team is hard at work tackling the challenges that come with building a modern business planning platform. Engineering Program Manager Chaimaa E. and Tech Lead Benjamin Hewins, recently spoke with Elliot Kipling and Enginears to share their insights on Pigment's engineering team, culture, and the technical problems they're solving each day.

Fuzz-driven slow path detection

· 6 min read
Nicolas Dubien
Software Engineer

Fuzz testing consists into executing a given piece of code against randomized inputs. It is a known tool when you want to detect bugs in your algorithms, but we rarely talk of it for performance related topics. Let's see how we can turn fuzzers into tools able to help us into detecting slow code paths.