TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Do you write unit/integration tests for both versions of A/B tests?

1 点作者 deepsy超过 4 年前
We're using integration tests to cover 90% of the user flows. Adding integration tests for all a/b test flows and their permutations seems to be an overkill, but we're facing situations in which there are broken things only when the user is in b version of the test X and b version of the test Y. I'm wondering how other smaller companies deal with this?

1 comment

goatcode超过 4 年前
When we do feature testing, it&#x27;s normally an existing feature against a new one. This implies testing the new code just as if it were exposed to everyone, and the old code is already tested.<p>If you&#x27;re seeing broken things in one execution path, then yes, I&#x27;d say testing would be a good idea.