Bacancy Bacancy
  • Our Engagement Models

    We offer flexible engagement models tailored to your project scope and timeline.

    Software Development Outsourcing
    Staff Augmentation
    Dedicated Teams
    Engagement Models

    High-Quality, Affordable IT Outsourcing

    Explore All Services

    AI & ML

    • AI Strategy & Roadmap
    • AI Development
    • Generative AI
    • AI Agent Development
    • Machine Learning
    • Computer Vision
    • LLM Development
    • RAG Development

    Data

    • Data Engineering
    • Data Analytics & BI
    • Data Science
    • Data Warehouse
    • Data Governance

    Cloud

    • Cloud Consulting
    • Cloud Migration
    • AWS Services
    • Azure Services
    • GCP Services
    • Kubernetes
    • DevOps

    Product Engineering

    • Full Stack Development
    • Custom Software Development
    • SaaS Development
    • App Modernization
    • Mobile App Development
    • Web Development
    • UI/UX Design

    Platforms

    • Salesforce
    • SAP
    • ServiceNow
    • Microsoft Dynamics
    • Snowflake
    • Databricks
  • Why Bacancy

    14+ years building domain-specific products for regulated and high-growth industries worldwide.

    Global delivery, every time zone

    Global delivery, every time zone

    1050+ vetted engineers

    1050+ vetted engineers

    Onboard in 48 hours

    Onboard in 48 hours

    Explore Our Case Studies

    Industries

    • Healthcare
    • Fintech
    • Real Estate
    • Logistics
    • Education
    • eCommerce
    How Bacancy Built a Custom Epic EHR Solution to Automate Clinical Workflows

    How Bacancy Built a Custom Epic EHR Solution to Automate Clinical Workflows

    Read case study
  • About.

    1050+ world-class tech experts. One standard: customer satisfaction.

    About Company

    About Company

    • About Us
    • Leadership Team
    • Customer Reviews
    • Infrastructure
    • Our Locations
    • Partnership

    Resources

    • Press Room
    • Blog
    • Insights
    ISO/IEC 27001:2022 Certified

    ISO/IEC 27001:2022 Certified

    Built for enterprise security and compliance.

    Get Quote
  • Technologies
  • Customer Stories
  • Contact Us
Find a Developer
book a 30 min call
  • AI Strategy & Roadmap
  • AI Development
  • Generative AI
  • AI Agent Development
  • Machine Learning
  • Computer Vision
  • LLM Development
  • RAG Development
  • Data Engineering
  • Data Analytics & BI
  • Data Science
  • Data Warehouse
  • Data Governance
  • Cloud Consulting
  • Cloud Migration
  • AWS Services
  • Azure Services
  • GCP Services
  • Kubernetes
  • DevOps
  • Full Stack Development
  • Custom Software Development
  • SaaS Development
  • App Modernization
  • Mobile App Development
  • Web Development
  • UI/UX Design
  • Salesforce
  • SAP
  • ServiceNow
  • Microsoft Dynamics
  • Snowflake
  • Databricks
  • Healthcare
  • Fintech
  • Real Estate
  • Logistics
  • Education
  • eCommerce
  • About Us
  • Leadership Team
  • Customer Reviews
  • Infrastructure
  • Our Locations
  • Partnership
  • Press Room
  • Blog
  • Insights

Technologies

Customer Stories

Contact Us

Find a Developer
book a 30 min call
Unit Testing in Angular Application 2

Unit Testing in Angular(7/8/9) Using Jasmine and Karma Part-2

Parth Sardhara
Parth Sardhara Engineering Manager
Last Updated on March 5, 2025 | Written By: Parth Sardhara

Welcome to the second installment of unit testing in Angular application. In this blog, you will learn the remaining things about unit testing in Angular application and how to write unit tests for different scenarios.

Before we start unit tests if you have missed the part-1, then you can check it here.

So, let’s get started.

Table of Contents to be covered:

  1. How to write test cases to check comparison for the numbers
  2. How to write test cases for EventEmitter
  3. How to run a single test case
  4. How to run a single spec file
  5. How to skip a single test case
  6. How to skip a single spec file
  7. How to run the test cases in Firefox
  8. Reference link

Let’s start with how to write the test cases for the different scenarios for the component.

(1) How to Write Test Cases to Check Comparison for the Numbers.

1. How to check if the value of a variable is a number or not?

Let’s say we have a variable in a TS file like.

public toBeNaN = 0 / 0;

If you want to check that toBeNaN should not be a number, then first, you need to access in the spec file, and then you need to use the method which is provided by jasmine.

 it('toBeNaN variable should not be a number.', () => {
   var toBeNaNValue = component.toBeNaN;
   expect(toBeNaNValue).toBeNaN();
 });

The above test cases will check the value of the toBeNaN variable should not be a number, and if the value is not a number, then it will run successfully, or else the above test case will be false.

2. How to check that array contains the desired value or not.

Let’s say we have a method in a TS file that returns an array with some value.

 arrayList() {
   return ['first name','last name', 'middle name'];
 }

In order to check whether the array contains the first name or not, then we can check something like,

 it("Should contain 'first name' in an array which return by ArrayList method.", () => {
   const name = component.arrayList();
   expect(name).toContain('first name');
 });

So as per the above test case code first, it will call the ArrayList method and store the value in name const, and then it will check that name contain ‘first name’ or not if it has then test case will be a success and if not then it will be a failure.

3. How to check that array value should be equal.

Let’s tale the above example, and in that, we return the value in an array something like: [‘first name,’ ‘last name,’ ‘middle name’];

Then if we want to check that the return array should be the same or equal to the above array value, then we need to write the test case something like.

it("arrayList method return array value Should equal to mockArray value.", () => {
   const name = component.arrayList();
   const mockArray = ['first name','last name', 'middle name'];
   expect(name).toEqual(mockArray);
 });

Note: – The above solution will match the same array with value on a particular index as well.

4. How to check that variable value is less than or not.

Let’s say we have a variable in TS file, and if we want to check that, it should be less than 10.

public toBeLessThanValue: number = 1.5;

 it('Value of toBeLessThanValue variable should be less than 10.', () => {
   const percent = component.toBeLessThanValue;
   expect(percent).toBeLessThan(10);
 });

So in order to check that the value of the variable should be less than 10, we need to use the toBeLessThan method, which is provided by jasmine.

Note:- We can also simplify the above solution as I first store the value of the variable is a constant, instead of that, we can directly use that variable, something like the solution below.

it('Value of toBeLessThanValue variable should be less than 10.', () => {
   expect(component.toBeLessThanValue).toBeLessThan(10);
 });

For your practice, you can use the below method and write your own test cases.

  1. toBeLessThanOrEqual()
  2. tobe greater than()
  3. toBeGreaterThanOrEqual()

Looking for experts with the necessary skills to create front-end applications that are secure, scalable, and trustworthy?
Get in touch with us to hire Angular developer to create user-friendly applications beyond your expectations.

(2) How to write test cases for event emitter.

1. How to write test cases for EventEmitter.

Let’s say we have an EventEmitter in the TS file, and also we have a method emitToParent, and while calling this method, it should emit the value ‘true.’

So step 1, we should have an @output EventEmitter variable, and we should have a method for emitting the value. Here we have the emitToParent method.

@Output() data = new EventEmitter();
 emitToParent() {
   this.data.emit(true);
 }

So to write test cases for Event Emitter, we need to write case something like below.

it('Should emit the value once emitToParent method calling.', () => {
   spyOn(component.data, 'emit');
   component.emitToParent();
   expect(component.data.emit).toHaveBeenCalledWith(true);
 });

So using the toHaveBeenCalledWIth method, we can check that emit is successful or not.

(3) How to run a single test case.

If we want to run a single test case, then we need to add ‘f’ as a prefix in that test cases so it will become fit something like.

it('should not be null isLoggedInArrary', () => {
   const isLoggedInArrary = component.isLoggedInArrary;
   expect(isLoggedInArrary).toEqual(['a']);
 });
 
 fit('close should emit the value once emitToParent method calling.', () => {
   spyOn(component.data, 'emit');
   component.emitToParent();
   expect(component.data.emit).toHaveBeenCalledWith(true);
 });

In the above case, it will only run the second test case as we provided f as a prefix to that test case no matter if other test cases are gonna be a success or fail.

(4) How to run a single spec file.

If we want to run a single test spec file, then we need to add ‘f’ as a prefix in that spec file describe method so it will become fdescribe something like…

fdescribe('HomeComponent', () => {
 let component: HomeComponent;
 let fixture: ComponentFixture;
 
 beforeEach(async(() => {
   TestBed.configureTestingModule({
     declarations: [HomeComponent]
   })
     .compileComponents();
 }));

(5) How to skip a single test case

If we want to skip a single test case, then we need to add ‘X’ as a prefix in that test cases so it will become fit something like,

 it('should not be null isLoggedInArrary', () => {
   const isLoggedInArrary = component.isLoggedInArrary;
   expect(isLoggedInArrary).toEqual(['a']);
 });
 
 xit('close should emit the value once emitToParent method calling.', () => {
   spyOn(component.data, 'emit');
   component.emitToParent();
   expect(component.data.emit).toHaveBeenCalledWith(true);
 });

In the above case, it will only skip the second test case as we provided X as a prefix to that test case no matter if that test case is gonna be a success or fail.

(6) How to skip a single spec file.

If we want to skip a single test spec file, then we need to add ‘X’ as a prefix in that spec file describe method so it will become xdescribe something like.

xdescribe('HomeComponent', () => {
 let component: HomeComponent;
 let fixture: ComponentFixture;
 
 beforeEach(async(() => {
   TestBed.configureTestingModule({
     declarations: [HomeComponent]
   })
     .compileComponents();
 }));

So in the above case, xdescribe will not run the test case; it will run another spec file.

(7) How to run the test cases in Firefox.

So as we learn in Test cases in Angular part-1, while we run the test cases in Angular using ng test, then it will automatically open the chrome browser, but what if we want to run the test cases in Firefox.

That is also possible to run the test cases in Firefox, and for that first, you should have Firefox on your laptop or desktop. Then you need to install one package and need to set the configuration to run the test cases in Firefox.

Step 1: install node package karma-firefox-launcher using the terminal by below command

Command: npm install karma-firefox-launcher –save-dev

"karma-firefox-launcher": "^1.2.0",

Step 2: Then go to the karma.conf.js file and add plugins like using the below line after require(‘karma-chrome-launcher’), line.

require('karma-firefox-launcher'),

Step 3: Then add Firefox in browsers array something like below.

browsers: ['Chrome', 'Firefox'],

Step 4: Run the test case using the ng test, and it will open both the browser as shown in the below video.

Firefox Test case: https://drive.google.com/file/d/1DKluBomf8g6srN76HSg3bu9v-p_a520N/view?usp=sharing

(8) Reference link

Github: https://github.com/parthsardhara/Angular-Test-Cases

Wrapping Up:

I hope your purpose of landing on this blog post has been served. But, in case if you are looking for skilled Angular developers who can help you build experiences that deliver results, then get in touch with us today to hire angularJS developers monthly and hourly from the top-notch Angular development company, and you’re all set for Angular app development.


Expand Your Digital Horizons With Us.

Start a new project or take an existing one to the next level. Get in touch to start small, scale-up, and go Agile.


Or
E-mail us : [email protected]

Your Success Is Guaranteed !

Related Articles

Dipal Bhavsar

May 29, 2025

AngularJS

Angular 20: Your Guide to the Latest Features and Improvements

By : Dipal Bhavsar

Angular 20 just launched, and it’s packed with exciting updates that make your app development faster, easier, and more modern....

Read More
Dipal Bhavsar

April 10, 2025

Application Development

AI in Mobile App Development: How It Works, Benefits & What’s Next

By : Dipal Bhavsar

This comprehensive guide explores the ins and outs of AI in mobile app development. From chatbots and automation to smart...

Read More
Dipal Bhavsar

January 23, 2025

AngularJS

Angular Standalone Components: A Key for Faster and Modern Development

By : Dipal Bhavsar

This comprehensive blog covers everything you need to know about Angular standalone components. Introduced in Angular v14, standalone components allow...

Read More

Offices and Development Centers

Bacancy Ahmedabad Ahmedabad

15-16, Times Corporate Park, Thaltej, Ahmedabad, 380059

Bacancy Gandhinagar Gandhinagar

422-A, 4th Floor, Pragya Tower Road 11, Block 15, Zone 1, SEZ-PA Gandhinagar, 382355

Bacancy Hyderabad Hyderabad

Awfis, Level 1, N Heights, Plot No 38, Phase 2, Hitech City Hyderabad, 500081

Bacancy Mumbai Mumbai

18th Floor, Cyberone, opp. CIDCO Exhibition Centre, Sector 30, Vashi, Navi Mumbai, 400703

Bacancy Pune Pune

2nd FloorMarisoft-1, Marigold IT Park, Pune - 411014

Bacancy Bengaluru Bengaluru

Raheja Towers, 26/27, Mahatma Gandhi Rd, East Wing, Craig Park Layout, Ashok Nagar, Bengaluru, 560001

Global Presence

Bacancy New Jersey New Jersey

33 South Wood Ave, Suite 600, Iselin NJ 08830

Bacancy California California

535 Mission St 14th floor, San Francisco, CA 94105

Bacancy Massachusetts Massachusetts

501 Boylston St, Boston, MA 02116

Bacancy Florida Florida

4995 NW, 72nd Avenue, Suite 307, Miami, FL, 33166

Bacancy London London

90 York Wy, London N1 9AG, United Kingdom

Bacancy Ontario Ontario

71 Dawes Road, Brampton, On L6X 5N9, Toronto

Bacancy Australia Australia

351A Hampstead Rd, Northfield SA 5085

Bacancy UAE UAE

One Central 8th and 9th Floor - Trade Centre - Trade Centre 2 - Dubai - United Arab Emirates

Bacancy Sweden Sweden

Junkergatan 4, 126 53 Hagersten

Get in Touch

Great Place to Work

Get in Touch

cal-icon

Looking for expert advice?

Schedule a Expert Call

gmail-icon

Email Us

[email protected]


  • Brochure
  • Quality Assurance
  • Resources
  • Tutorials
  • Customer Reviews
  • Privacy Policy
  • FAQs
  • Press Room
  • Contact Us
  • Sitemap
  • Employee

bacancy google review 4.6
bacancy google review
bacancy clutch review 4.8
bacancy clutch review
bacancy glassdoor review 4.5
bacancy glassdoor review
bacancy goodfirms review 4.8
bacancy goodfirms review
iso
  • Bacancy Behance
  • Bacancy Pinterest

Copyright © 2026 BACANCY SERVICES PRIVATE LIMITED All rights reserved.