<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/jqwik-protestware-follow-up-lands-circleci-bets-on-firecracker-for-agent-ci-4z1vjkaxp" -->

---
title: jqwik protestware follow-up lands, CircleCI bets on...
description: A roundup of testing and CI/CD news: CircleCI launched Chunk sidecars using Firecracker microVMs that cut compute costs 10-20x for agentic CI workflows....
canonical: https://daily.dev/posts/jqwik-protestware-follow-up-lands-circleci-bets-on-firecracker-for-agent-ci-4z1vjkaxp
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: jqwik protestware follow-up lands, CircleCI bets on Firecracker for agent CI | daily.dev
og:description: A roundup of testing and CI/CD news: CircleCI launched Chunk sidecars using Firecracker microVMs that cut compute costs 10-20x for agentic CI workflows....
og:url: https://daily.dev/posts/jqwik-protestware-follow-up-lands-circleci-bets-on-firecracker-for-agent-ci-4z1vjkaxp
og:image: https://api.daily.dev/og/posts/4Z1vjKaXP.png
og:image:alt: jqwik protestware follow-up lands, CircleCI bets on Firecracker for agent CI
og:image:width: 1200
og:image:height: 630
og:locale: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# jqwik protestware follow-up lands, CircleCI bets on Firecracker for agent CI

**[Testing Digest](https://daily.dev/sources/testing_digest)** · 5 min read · 0 upvotes · 0 comments

## Summary

A roundup of testing and CI/CD news: CircleCI launched Chunk sidecars using Firecracker microVMs that cut compute costs 10-20x for agentic CI workflows. Atlassian's Jira team used AI agents to reduce flaky test triage and feature flag cleanup by up to 80%, merging 500+ PRs in 70 days. SmartBear added computer vision and OCR to TestComplete for CAD and canvas-based apps. A Tricentis survey of 2,501 professionals revealed 60% of orgs regularly ship untested code despite claiming AI integration. Also covered: Microsoft open-sourced ASSERT for AI behavior testing, Angular 22 drops Karma/Jasmine for Vitest, Trendyol's QA dashboard cut status checks from 15 minutes to under 2 minutes, FixtureKit generates Playwright-ready fixtures from TypeScript/Zod schemas, and a Stripe webhook E2E harness caught a real production race condition.

## Content

**TLDR:** CircleCI introduced Chunk sidecars — Firecracker microVM environments that start in milliseconds and cut compute costs 10-20x compared to full CI pipelines for agentic validation. Atlassian's Jira team cut maintenance chores by up to 80% using AI agents to fix flaky tests and clean up stale feature flags, with 500+ merged PRs in 70 days. SmartBear added computer vision and OCR to TestComplete, targeting CAD and canvas-based apps that have historically required manual testing. A Tricentis survey of 2,501 professionals found 60% of organizations admit developers regularly ship untested code to production despite 68% claiming AI integration across their SDLC.

---

## CircleCI Chunk sidecars: 10-20x cheaper CI for AI agents using Firecracker microVMs

CircleCI's new Chunk sidecars spin up Firecracker microVM environments in milliseconds, reuse warm environments across agent sessions, and stream output directly to the agent — no API polling. Compared to parsing full CI logs, they deliver 3x better token efficiency and 10-20x lower core compute costs. The framing is explicit: retrofitting human-centric CI pipelines for agentic workflows doesn't work, and the infrastructure needs to be rebuilt around agent iteration speed rather than human review cadence. [Read more](https://app.daily.dev/posts/dt6PVlgsV)

## Atlassian cuts flaky test triage and feature flag cleanup by up to 80% with Jira-integrated agents

Atlassian's Jira engineering team deployed AI agents for two specific maintenance tasks: triaging CI failures and reproducing flaky tests (saving roughly one engineering week per month), and cleaning up stale feature flags via a daily cron that creates Jira work items agents act on. The feature flag workflow produced over 500 merged PRs in 70 days. The design keeps humans in the loop — agents open draft PRs, engineers approve — and encodes team expertise into reusable agent skills rather than one-off prompts. [Read more](https://app.daily.dev/posts/FpC7YICJl)

## SmartBear adds computer vision and OCR to TestComplete for visually complex apps

TestComplete now combines property-based recognition, OCR, and vision AI to automate testing of applications that have no testable code structure underneath — CAD tools, canvas-based apps like Google Maps, virtualized environments like Citrix, and complex data viz tools like Tableau and SAP. The motivation is straightforward: AI-accelerated development is increasing release velocity faster than manual QA can keep up, and selector-based automation simply doesn't work on these app categories. A Futurum Group survey cited in the announcement puts AI-assisted testing adoption at 37% of organizations already. [Read more](https://app.daily.dev/feed-by-ids?id=WtRMtOar8&id=ixG3hrc7O)

## Tricentis survey: 60% of orgs ship untested code despite claiming AI integration

A Tricentis survey of 2,501 IT and DevOps professionals found that while 68% say they've integrated AI across software delivery, 60% admit developers regularly push untested code to production. Only 35% feel fully prepared to govern AI agents. Top benefits cited were quality and risk detection (37%), improved accuracy (36%), and better test automation coverage (32%). The gap between claimed adoption and actual practice is the real signal here — AI is accelerating code output faster than testing discipline is keeping up, and 20% of respondents reported annual losses up to $5 million tied to poor software quality. [Read more](https://app.daily.dev/posts/9CMCmgPRM)

---

## Also notable

- **Microsoft open-sources ASSERT for spec-driven AI behavior testing:** Microsoft released ASSERT (Adaptive Spec-driven Scoring for Evaluation and Regression Testing), an open-source framework that converts plain-language behavioral policies into structured test cases, scores results, and records intermediate tool calls so you can trace exactly where an AI system fails — filling the gap that generic benchmarks leave for application-specific evaluation. [Read more](https://app.daily.dev/posts/c6LH1Ot4I)
- **Angular 22 drops Karma/Jasmine, defaults to Vitest and zoneless change detection:** Angular 22 replaces Karma and Jasmine with Vitest as the default test runner, goes zoneless by default using ChangeDetectionStrategy.OnPush for all new components, and ships a migration tool for existing apps — a breaking enough shift that any team on Angular CI pipelines needs to plan for it. [Read more](https://app.daily.dev/posts/TPdETu6WA)
- **Trendyol QA dashboard cut daily status checks from 15 minutes to under 2 minutes:** Trendyol's QA team built a unified dashboard on Java 21, Spring Boot 3.3, and HTMX with GitLab API and Allure/Karate/Cucumber integration, achieving 100% QA adoption within a month, 60% backend developer adoption, and roughly 30% faster flaky test resolution. [Read more](https://app.daily.dev/posts/0mz8yh3NA)
- **FixtureKit generates Playwright-ready mock fixtures from TypeScript and Zod schemas:** FixtureKit outputs fixtures in TypeScript, JSON, MSW, or Playwright formats directly from TypeScript interfaces or Zod schemas, runs entirely locally with no external data transmission, and removes the manual work of keeping mock data in sync with schema changes. [Read more](https://app.daily.dev/posts/2JNGpRhrS)
- **Stripe webhook E2E test harness using Stripe Test Clocks uncovered a real race condition:** A Rails test harness using Stripe Test Clocks and the Stripe CLI to fast-forward time through a full payment retry cycle caught a production race where customer.subscription.deleted fires before invoice.payment_failed on the third failure, causing AccountCloser to clear subscription data before email routing logic runs — a bug that mocked webhook payloads would never surface. [Read more](https://app.daily.dev/posts/y0Xejk2jm)

---

Tags: [#testing](https://daily.dev/tags/testing), [#cicd](https://daily.dev/tags/cicd), [#ai-agents](https://daily.dev/tags/ai-agents)

[View this post on daily.dev](https://daily.dev/posts/jqwik-protestware-follow-up-lands-circleci-bets-on-firecracker-for-agent-ci-4z1vjkaxp)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@type":"DiscussionForumPosting","mainEntityOfPage":"https://daily.dev/posts/jqwik-protestware-follow-up-lands-circleci-bets-on-firecracker-for-agent-ci-4z1vjkaxp","headline":"jqwik protestware follow-up lands, CircleCI bets on Firecracker for agent CI","text":"A roundup of testing and CI/CD news: CircleCI launched Chunk sidecars using Firecracker microVMs that cut compute costs 10-20x for agentic CI workflows. Atlassian's Jira team used AI agents to reduce flaky test triage and feature flag cleanup by up to 80%, merging 500+ PRs in 70 days. SmartBear added computer vision and OCR to TestComplete for CAD and canvas-based apps. A Tricentis survey of 2,501 professionals revealed 60% of orgs regularly ship untested code despite claiming AI integration. Also covered: Microsoft open-sourced ASSERT for AI behavior testing, Angular 22 drops Karma/Jasmine for Vitest, Trendyol's QA dashboard cut status checks from 15 minutes to under 2 minutes, FixtureKit generates Playwright-ready fixtures from TypeScript/Zod schemas, and a Stripe webhook E2E harness caught a real production race condition.","url":"https://daily.dev/posts/jqwik-protestware-follow-up-lands-circleci-bets-on-firecracker-for-agent-ci-4z1vjkaxp","datePublished":"2026-06-08T04:20:44.992Z","dateModified":"2026-06-08T04:22:07.625Z","author":{"@type":"Organization","name":"Testing Digest","logo":"https://media.daily.dev/image/upload/s--1rQKIOqD--/f_auto,q_auto/v1773839410/logos/testing_digest?_a=BAMAMiiu0","url":"https://daily.dev/sources/testing_digest"},"interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":0},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":0}],"isPartOf":{"@type":"WebPage","url":"https://daily.dev/sources/testing_digest","name":"Testing Digest"}}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"Testing Digest","item":"https://daily.dev/sources/testing_digest"},{"@type":"ListItem","position":3,"name":"jqwik protestware follow-up lands, CircleCI bets on Firecracker for agent CI"}]}
```

