Friday, February 17, 2017

EmberJS - Testing

Introduction

Testing is a development cycle of Ember.js framework. It provides user interactions such as login, creating post etc for writing an Ember application.
There are two types for testing the Ember application:

  • Acceptance
  • Unit

Acceptance Tests

To test user interaction with application and flow of application, the acceptance tests are used. By using acceptance tests, user can login via login form and can able to create blog post.

Unit Tests

Unit tests are used to test the functionality or units of an Ember application without worrying dependencies of an application. It contains some unit tests for the scenario such as user role, user name, full name of user, title of post or title should exceed more than 50 characters.
Let us see some more details about testing by clicking the below links:

No comments:

Post a Comment