What is Smoke Test?
A quick set of basic tests that verify the most critical functions of an application are working.
Why It Matters
Smoke tests catch major problems immediately after deployment before running more thorough test suites.
Real-World Example
After deploying, checking that the homepage loads, login works, and the API responds.
“Understanding terms like Smoke Test matters because it helps you have better conversations with developers and make smarter decisions about your software. You do not need to be technical. You just need to know enough to ask the right questions.”
Related Terms
Testing
Verifying that your code works correctly through automated checks
E2E Test
End-to-end test that simulates a real user completing tasks in your application
Deployment
The process of making your application available for users to access on the internet
CI/CD
Automated processes that test your code (Continuous Integration) and deploy it (Continuous Deployment) whenever you make changes
Learn More at buildDay Melbourne
Want to understand these concepts hands-on? Join our one-day workshop and build a real web application from scratch.
Related Terms
Deployment
The process of making your application available for users to access on the internet
CI/CD
Automated processes that test your code (Continuous Integration) and deploy it (Continuous Deployment) whenever you...
E2E Test
End-to-end test that simulates a real user completing tasks in your application
Testing
Verifying that your code works correctly through automated checks
Unit Test
A test that checks if a small piece of code works correctly in isolation
Integration Test
A test that checks if multiple parts of your system work correctly together