SlideShare a Scribd company logo
André Faria Gomes
   @andrefaria
Jasmine is a behavior-driven
development framework for testing
       your JavaScript code.
It does not depend on any other
    JavaScript frameworks
It does not require a DOM
It has a clean, obvious syntax so that
      you can easily write tests.
Testing Javascript with Jasmine
Specs
Expectations
Suites
Nested
Disabling



      describe => xdescribe
            it => xit
Matchers
 expect(x).toEqual(y);
 expect(x).toBe(y); //same
 expect(x).toMatch(pattern); //regex
 expect(x).toBeDefined(); //not undefined
 expect(x).toBeNull();
 expect(x).toBeTruthy();
 expect(x).toBeFalsy();
 expect(x).toContain(y); //for arrays or strings
 expect(x).toBeLessThan(y);
 expect(x).toBeGreaterThan(y);
 expect(fn).toThrow(e);
 expect(x).not.toEqual(y);
Your Matchers
Before & After
Spies
  Spies are automatically removed after each spec.
  They may be set in the beforeEach function
Spying Static Methods
Spying Instance Methods
Spying CallBacks
Spying AJAX
Spying Matchers
expect(x).toHaveBeenCalled()
expect(x).toHaveBeenCalledWith(arguments)
expect(x).not.toHaveBeenCalled()
expect(x).not.toHaveBeenCalledWith(arguments)


spyOn(x, 'method').andCallThrough(): spies on AND calls the original function spied on
spyOn(x, 'method').andReturn(arguments): returns passed arguments when spy is called
spyOn(x, 'method').andThrow(exception): throws passed exception when spy is called
spyOn(x, 'method').andCallFake(function): calls passed function when spy is called




Spy Properties
callCount: returns number of times spy was called
mostRecentCall.args: returns argument array from last call to spy.
argsForCall[i] returns arguments array for call i to spy.
Asynchronous Specs
   runs
Asynchronous Specs
   waiting
Asynchronous Specs
   waiting condiction
HTML               /src
SpecRunner.html   /spec
Ruby
Gem
NodeJS
package




     npm install jasmine-node --global
     jasmine-node scripts
Java
maven
References
https://github.com/pivotal/jasmine

More Related Content

PPTX
JavaScript gotchas
PPT
7 decision-control
DOCX
Catch and throw blocks
PPTX
Nesting of if else statement & Else If Ladder
PPTX
Conditional statement c++
PPTX
Conditionalstatement
PDF
Control statement
PDF
Chapter 8 - Conditional Statement
JavaScript gotchas
7 decision-control
Catch and throw blocks
Nesting of if else statement & Else If Ladder
Conditional statement c++
Conditionalstatement
Control statement
Chapter 8 - Conditional Statement

What's hot (20)

PPTX
Conditional Statement in C Language
PPTX
CONDITIONAL STATEMENT IN C LANGUAGE
PPTX
Conditional and control statement
PPSX
C lecture 3 control statements slideshare
PDF
Lecture04(control structure part i)
PDF
basic of desicion control statement in python
PDF
control statement
PDF
5 c control statements looping
PPTX
C if else
DOC
PHP MATERIAL
PPTX
Selection Statements in C Programming
PPTX
Control Statement programming
PPTX
Php & my sql
PPT
SQL -PHP Tutorial
PPTX
Module 2- Control Structures
PPT
Branching in C
PPTX
Control and conditional statements
PDF
C++ STATEMENTS
DOCX
Arrays
PPTX
Decision Control Structure If & Else
Conditional Statement in C Language
CONDITIONAL STATEMENT IN C LANGUAGE
Conditional and control statement
C lecture 3 control statements slideshare
Lecture04(control structure part i)
basic of desicion control statement in python
control statement
5 c control statements looping
C if else
PHP MATERIAL
Selection Statements in C Programming
Control Statement programming
Php & my sql
SQL -PHP Tutorial
Module 2- Control Structures
Branching in C
Control and conditional statements
C++ STATEMENTS
Arrays
Decision Control Structure If & Else
Ad

Viewers also liked (18)

DOCX
Tránsito en Bahía Blanca- Accidente de tránsito.
PDF
Manual de practicas de solidworks
PPTX
Animating Digital Libraries
PDF
PDF
DXi EXEC SUMMARY
PDF
INTRODUCCION A LA INGENIERIA Y OTROS SABERES DEL SIGLO XXI
PDF
DEspinoza_Resume
PDF
emt nat. cert
PDF
MG Doyle Reference
DOC
Resume of Cliff Daniels
PDF
termodinamica y sus aplicaciones a los seres vivos
PPTX
Ptengine 「隠し要素」とは
PPT
HELVETASinNepal_60Years_20062016
PDF
Sci10 tg u2
PDF
ヒートマップで、アクセス解析・仮説検証力を磨く 先生:小原 良太郎
PPTX
Actividad 5 ELEMENTOS DE LAS DIAPOSITIVAS
PPTX
PPTX
Actividad 10 6 g
Tránsito en Bahía Blanca- Accidente de tránsito.
Manual de practicas de solidworks
Animating Digital Libraries
DXi EXEC SUMMARY
INTRODUCCION A LA INGENIERIA Y OTROS SABERES DEL SIGLO XXI
DEspinoza_Resume
emt nat. cert
MG Doyle Reference
Resume of Cliff Daniels
termodinamica y sus aplicaciones a los seres vivos
Ptengine 「隠し要素」とは
HELVETASinNepal_60Years_20062016
Sci10 tg u2
ヒートマップで、アクセス解析・仮説検証力を磨く 先生:小原 良太郎
Actividad 5 ELEMENTOS DE LAS DIAPOSITIVAS
Actividad 10 6 g
Ad

Similar to Testing Javascript with Jasmine (20)

PPTX
PDF
Quick tour to front end unit testing using jasmine
PDF
Quick Tour to Front-End Unit Testing Using Jasmine
PDF
Testing JavaScript with Jasmine
PDF
JavaScript Test-Driven Development with Jasmine 2.0 and Karma
PDF
Jasmine BDD for Javascript
PDF
Front end unit testing using jasmine
PPT
Jasmine - A BDD test framework for JavaScript
PDF
JavaScript TDD with Jasmine and Karma
PDF
[Js hcm] Java script- Testing the awesome
PPTX
The sweet smell of jasmine for testing JavaScript
PDF
Jasmine - why JS tests don't smell fishy
PPTX
AngularJS Testing
ODP
Introduccion a Jasmin
PPTX
Unit testing using jasmine in Javascript
PPT
Jasmine presentation Selenium Camp 2013
PPTX
Javascript Testing with Jasmine 101
PPTX
Jasmine Testing to the Rescue!
PPTX
Unit testing in JavaScript with Jasmine and Karma
PPTX
Java Script Isn\'t a Toy Anymore
Quick tour to front end unit testing using jasmine
Quick Tour to Front-End Unit Testing Using Jasmine
Testing JavaScript with Jasmine
JavaScript Test-Driven Development with Jasmine 2.0 and Karma
Jasmine BDD for Javascript
Front end unit testing using jasmine
Jasmine - A BDD test framework for JavaScript
JavaScript TDD with Jasmine and Karma
[Js hcm] Java script- Testing the awesome
The sweet smell of jasmine for testing JavaScript
Jasmine - why JS tests don't smell fishy
AngularJS Testing
Introduccion a Jasmin
Unit testing using jasmine in Javascript
Jasmine presentation Selenium Camp 2013
Javascript Testing with Jasmine 101
Jasmine Testing to the Rescue!
Unit testing in JavaScript with Jasmine and Karma
Java Script Isn\'t a Toy Anymore

More from André Faria Gomes (20)

PDF
Meetup Escale - Gestão para Equipes de Alta Performance
PDF
Protagonistas da inovação - Como criar e gerir os negócios do futuro
PDF
A Mobilidade como Propulsor da Transformação Digital
PDF
Além da Agilidade 2019 - KickOff Wow
PDF
Modern systems architectures: Uber, Lyft, Cabify
PDF
Breaking the monolith
PDF
Agilidade - APAS
PDF
Principles and Radical Transparency - Lessons Learned from Ray Dalio
PDF
Bluesoft @ AWS re:Invent 2017 + AWS 101
PDF
Boas Práticas da Rede Supermercadista Wegmans
PDF
Boas Práticas para Supermercadistas inspiradas no Whole Foods, Sprouts Marke...
PDF
Change management - Kotter’s eight-step model
PDF
Palestra na Uninove sobre Agilidade
PDF
Pensando Rápido e Devagar
PDF
What happened to Google Reader?
PDF
Gestão Ágil com Management 3.0
PDF
Lições aprendidas em 10 anos de agilidade
PDF
Os 7 hábitos das pessoas altamente eficazes
PDF
Objetividade: A Virtude Esquecida
PDF
Bematech IFRS
Meetup Escale - Gestão para Equipes de Alta Performance
Protagonistas da inovação - Como criar e gerir os negócios do futuro
A Mobilidade como Propulsor da Transformação Digital
Além da Agilidade 2019 - KickOff Wow
Modern systems architectures: Uber, Lyft, Cabify
Breaking the monolith
Agilidade - APAS
Principles and Radical Transparency - Lessons Learned from Ray Dalio
Bluesoft @ AWS re:Invent 2017 + AWS 101
Boas Práticas da Rede Supermercadista Wegmans
Boas Práticas para Supermercadistas inspiradas no Whole Foods, Sprouts Marke...
Change management - Kotter’s eight-step model
Palestra na Uninove sobre Agilidade
Pensando Rápido e Devagar
What happened to Google Reader?
Gestão Ágil com Management 3.0
Lições aprendidas em 10 anos de agilidade
Os 7 hábitos das pessoas altamente eficazes
Objetividade: A Virtude Esquecida
Bematech IFRS

Recently uploaded (20)

PDF
A comparative analysis of optical character recognition models for extracting...
PPTX
Cloud computing and distributed systems.
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
A Presentation on Artificial Intelligence
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Encapsulation theory and applications.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
cuic standard and advanced reporting.pdf
PDF
Electronic commerce courselecture one. Pdf
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Approach and Philosophy of On baking technology
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Assigned Numbers - 2025 - Bluetooth® Document
A comparative analysis of optical character recognition models for extracting...
Cloud computing and distributed systems.
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Reach Out and Touch Someone: Haptics and Empathic Computing
Mobile App Security Testing_ A Comprehensive Guide.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
A Presentation on Artificial Intelligence
Unlocking AI with Model Context Protocol (MCP)
Encapsulation_ Review paper, used for researhc scholars
Encapsulation theory and applications.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
cuic standard and advanced reporting.pdf
Electronic commerce courselecture one. Pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
20250228 LYD VKU AI Blended-Learning.pptx
Approach and Philosophy of On baking technology
Per capita expenditure prediction using model stacking based on satellite ima...
Building Integrated photovoltaic BIPV_UPV.pdf
Assigned Numbers - 2025 - Bluetooth® Document

Testing Javascript with Jasmine