Search⌘ K
AI Features

Acceptance Testing

Explore how to write and update acceptance tests in Ember.js using Ember CLI. Understand the role of acceptance testing in verifying complete user workflows across your application to ensure feature functionality from the user's point of view.

Overview

Acceptance tests are also known as application tests. They test the entire workflow of the application. We can validate the features from an end-user perspective. Acceptance tests create an instance of the Ember application.

Generating acceptance tests

We can generate acceptance tests using the following Ember CLI command:

ember g acceptance-test <test-name>
...