Book Image

Jasmine Cookbook

By : Munish Kumar
Book Image

Jasmine Cookbook

By: Munish Kumar

Overview of this book

Table of Contents (16 chapters)
Jasmine Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Using Jasmine with CoffeeScript


CoffeeScript exposes the good parts of JavaScript in a simple and straight manner. It is a language that compiles into JavaScript. The compiled output of CoffeeScript is readable and works in every JavaScript runtime environment. To know more about CoffeeScript, you can visit the following website:

http://coffeescript.org/

In this recipe, you will learn how to create Jasmine tests for CoffeeScript.

To understand this recipe, let's assume that you are developing an application for a bank with CoffeeScript and you have to develop test code to implement business logic for opening a new bank account.

"As a CoffeeScript developer, I want to implement business logic to validate a person's age so that I can implement a test condition successfully."

Let's consider some scenarios in the current context, that is, the person's age should be greater than or equal to 18 years to open bank account:

  • Scenario-1: Person should be eligible to open bank account if age is greater...