Blogposts, discussions, eventsTest automation tipWhen doing API testing, there are many things we might want to test. For example, in this test, we're making sure that the name returns unaltered from the server. But what about the other keys? We need to take a look at the response and take a look at the response body. This is not really a problem, but it may become one when we are dealing with hundreds of tests. And this is where TypeScript becomes incredibly useful. We can create an interface that will define the board body response. What we can do is we can tell the request function to expect board to be a return type. When we now start typing expect function, the board body will start auto-completing types from our board. 1 interface Board { 2 name: string 3 user: number 4 starred: boolean 5 created: string 6 id: number 7 } 1 cy.request<Board>('/api/boards').then(board => { 2 expect(board.body.name).to.eq('new board') 3 }) Meme of the week
|
|
Sign up for weekly tips on testing, development, and everything related. Unsubscribe anytime you feel like you had enough 😊
Filip Hric 24th March 2025 Playwright in Production Hello Reader,I’ll be doing a live webinar with my friend Jonathan tomorrow. We’ll be talking about different use-cases of Playwright in production. Interestingly we’ll focus on use cases that are outside of testing, like web-scraping, monitoring and automation workflows. Make sure to register and join us! Register here Blogposts, discussions, events In Case You Missed It – Code (r)evolution Livestream Last week, Jonathan and I unpacked...
Filip Hric 11th March 2024 Looking for a New Challenge Hello Reader,Big changes ahead! One of my major contracts is wrapping up this month, which means I’m now open to new opportunities in consulting, engineering, or DevRel. If your team is looking for someone to improve test reliability, create better documentation, or integrate AI into development workflows, let’s talk. I specialize in: ✔️ Rescuing unstable test suites & making QA developer-friendly ✔️ Creating educational content (docs,...
Filip Hric 18th February 2025 FLAKY TESTS Hello Reader,I’ve been working on a project to reduce test flakes. A project that has over 1200 end-to-end tests in a fairly complex system. As I’ve been slowly trying to reach zero, a pattern emerged. It seems like there are common themes when it comes to test flakiness. I shared some of them in my presentation at CypressConf, but lately it seems that flakiness in end-to-end tests is mostly a timing issue. A situation where test and application fall...