Bacancy Bacancy
      • About Company
      • Resources

      About Company

      About Us Leadership Team Customer Reviews Awards & Recognition
      Infrastructure Our Locations Partnership

      Resources

      Press Room Blog Insights
      We are great place to work certified™

      Building and Sustaining High-Trust, High-Performance Culture

      Get Quote
    • Engagement Models

      Hiring Software Developers becomes easier with just a few clicks.

      Software Development Outsourcing

      End-to-end delivery of custom solutions aligned to your roadmap.

      Staff Augmentation

      Scale your in-house team with pre-vetted specialists on demand.

      Dedicated Teams

      Get dedicated engineers who work exclusively on your project.

      • Enterprise Services
      • IT Services
      • Data Analytics
      • Cloud Services
      • AI & ML
      • Platforms

      Enterprise Services

      Digital Transformation Business Process Automation Digital Product Engineering Enterprise App Development Custom Software Development

      IT Services

      Legacy App Modernization DevOps & SRE Full Stack Development AI Testing & QA Automation

      Data Analytics

      Data Visualization & Reporting Data Engineering & Pipelines Data Science & Predictive Analytics Business Intelligence

      Cloud Services

      Cloud Strategy & Consulting Cloud Migration & Modernization Multi Cloud Management

      AI & ML

      AI Development Agentic AI Generative AI Computer Vision Machine Learning & MLOps

      Platforms

      Salesforce SAP ServiceNow Microsoft Dynamics Snowflake
      High-quality, Cost-effective IT Outsourcing

      Schedule a free discovery session to explore your needs and find tailored solutions with no obligation.

      explore all services
    • Industries
      Healthcare Fintech Real Estate
      Logistics Education Retail & Ecommerce
      Let's Grow Together! Get Quote
      • Front End
      • Backend
      • Mobile
      • Databases
      • DevOps & Infra
      • AI & Data Stack
      • Vibe Coding

      Front End

      React.js Next.js Angular Vue.js TypeScript
      Your Very Own UI/UX Architects

      Experience smooth navigation and user-friendly designs with our front-end expertise.

      Hire Frontend Developer

      Backend

      Node.js Python Java Spring Boot Laravel .NET C# Golang FastAPI
      Server Solutions To Change Power Dynamics

      Transform your data into digital experiences with optimized coding standards.

      Hire Backend Developer

      Mobile

      iOS Android Flutter React Native
      Innovating Mobile-Friendly App Solutions

      Create dynamic mobile apps that make your brand stand out from the crowd.

      Hire Mobile App Developer

      Databases

      PostgreSQL MongoDB MySQL Redis Supabase
      Dedicated Talent With Skilled Approach

      Bring your digital visions to life with a hired resource at your convenience.

      Hire Dedicated Developer

      DevOps & Infra

      AWS Azure Google Cloud Docker Kubernetes Terraform
      Redefining Scalable Digital Infrastructures

      Make your data accessible worldwide at will, and leave the stress behind.

      Get Quote

      AI & Data Stack

      OpenAI LangChain LlamaIndex Apache Spark Airflow Tableau PowerBI Databricks
      Guiding Decisions With Data-Driven Insights

      Transition from your gut calls to actionable insights with our rich Data Science expertise.

      Get Quote

      Vibe Coding

      Base44 Claude Code Cursor Lovable Github Copilot
      Your AI-Native Development Team

      Skip the boilerplate. Our vibe coding experts use AI-first tools to go from prompt to product, fast.

      Hire Vibe Coding Developer
  • Case Studies
  • Contact Us
Find a Developer book a 30 min call
      • About Us
      • Leadership Team
      • Customer Reviews
      • Awards & Recognition
      • Infrastructure
      • Our Locations
      • Partnership
      • Press Room
      • Blog
      • Insights
      • Digital Transformation
      • Business Process Automation
      • Digital Product Engineering
      • Enterprise App Development
      • Custom Software Development
      • Legacy App Modernization
      • DevOps & SRE
      • Full Stack Development
      • AI Testing & QA Automation
      • Data Visualization & Reporting
      • Data Engineering & Pipelines
      • Data Science & Predictive Analytics
      • Business Intelligence
      • Cloud Strategy & Consulting
      • Cloud Migration & Modernization
      • Multi Cloud Management
      • AI Development
      • Agentic AI
      • Generative AI
      • Computer Vision
      • Machine Learning & MLOps
      • Salesforce
      • SAP
      • ServiceNow
      • Microsoft Dynamics
      • Snowflake
    • Healthcare
    • Fintech
    • Real Estate
    • Logistics
    • Education
    • Retail & Ecommerce
      • React.js
      • Next.js
      • Angular
      • Vue.js
      • TypeScript
      • Hire Frontend Developer
      • Node.js
      • Python
      • Java
      • Spring Boot
      • Laravel
      • .NET
      • C#
      • Golang
      • FastAPI
      • Hire Backend Developer
      • iOS
      • Android
      • Flutter
      • React Native
      • Hire Mobile App Developer
      • PostgreSQL
      • MongoDB
      • MySQL
      • Redis
      • Supabase
      • Hire Dedicated Developer
      • AWS
      • Azure
      • Google Cloud
      • Docker
      • Kubernetes
      • Terraform
      • Get Quote
      • OpenAI
      • LangChain
      • LlamaIndex
      • Apache Spark
      • Airflow
      • Tableau
      • PowerBI
      • Databricks
      • Get Quote
      • Base44
      • Claude Code
      • Cursor
      • Lovable
      • Github Copilot
      • Hire Vibe Coding Developer
  • Case Studies
  • 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 : solutions@bacancy.com

Your Success Is Guaranteed !

Related Articles

Dipal Bhavsar

November 21, 2025

AngularJS

Angular 21: Latest Features, Updates & Advancements

By : Dipal Bhavsar

Read More
Dipal Bhavsar

November 3, 2025

AngularJS

7 Easiest Ways to Use AI in Angular

By : Dipal Bhavsar

Read More
Dipal Bhavsar

July 17, 2025

Application Development

Application Modernization Strategy: A Complete Roadmap for Legacy Transformation

By : Dipal Bhavsar

Application modernization strategies help businesses update legacy systems to meet demanding performance, scalability, and integration needs. They include approaches such...

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


  • 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 goodfirms review 4.8
bacancy goodfirms review
iso
  • Bacancy Behance
  • Bacancy Pinterest

Copyright © 2026 BACANCY SERVICES PRIVATE LIMITED All rights reserved.