Testing at Airbnb
nerds.airbnb.com
Testing at Airbnb
1–10 of 58 posts
Re: Testing at Airbnb
#2Re: Testing at Airbnb
#3Re: Testing at Airbnb
#4Re: Testing at Airbnb
#5As someone running a company with around 50 people, and a quickly growing codebase, introducing testing as "a bar so low you can trip over it" is an amazing way to articulate exactly how i feel about this.
For us at first we did this by introducing tests on our most complex and commonly used code, that could be run locally. Moving onto using pull requests and having a more robust CI setup to enable more regular deploys is currently the task at hand.
Re: Testing at Airbnb
#6You really don't got a test culture unless you're 'allowed' to take time to debug errors that happens inside the test suite and not the product itself. This is the difference between writing tests and really having a TDD-culture.
I mean those issues where the test suites requires maintenance but the actual code base or product is "working".
Everyone has had them. I guess it that's what the article means by 'great pain'.
Recently I've heard a few non-engineers use "continuos integration" as a way of charging clients more as use per buzz word rules.
Re: Testing at Airbnb
#7Re: Testing at Airbnb
#8I like that the URL for this starts with nerds.airbnb.com...
Re: Testing at Airbnb
#9I absolutely love this writeup! Thank you! As someone running a company with around 50 people, and a quickly growing codebase, introducing testing as "a bar so low you can trip over it" is an amazing way to articulate exactly how i feel about this. For us at first we did this by introducing tests on our most complex and commonly used code, that could be run locally. Moving onto using pull requests and having a more r…
Re: Testing at Airbnb
#10I wonder if the guys are doing code reviews for each PR along with making sure build is green. In our team, we've been doing code reviews for about three years now and can't imagine our workflow without them.