- EmberJS - Home
- EmberJS - Overview
- EmberJS - Installation
- EmberJS - Core Concepts
- Creating and Running Application
- EmberJS - Object Model
- EmberJS - Router
- EmberJS - Templates
- EmberJS - Components
- EmberJS - Models
- EmberJS - Managing Dependencies
- EmberJS - Application Concerns
- EmberJS - Configuring Ember.js
- EmberJS - Ember Inspector
EmberJS-Unit Testing Basics
Unit Testing Basics
Unit testing is basically used to test the code and ensure that it is doing what was intended. In unit testing, there are some common cases as shown below −
| S.N. | Test Cases & Description |
|---|---|
| 1 |
A computed property allows declaring functions as properties. |
| 2 |
It is used to alters some internal state of the object. |
| 3 |
The obsever is used to observe the text of the computed property. |
Advertisements