Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7070837
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:36:52+00:00 2026-05-28T05:36:52+00:00

How do we clear the spy in a jasmine test suite programmatically? Thanks. beforeEach(function()

  • 0

How do we clear the spy in a jasmine test suite programmatically? Thanks.

beforeEach(function() {
  spyOn($, "ajax").andCallFake(function(params){
  })
})

it("should do something", function() {
  //I want to override the spy on ajax here and do it a little differently
})
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T05:36:53+00:00Added an answer on May 28, 2026 at 5:36 am

    I’m not sure if its a good idea but you can simply set the isSpy flag on the function to false:

    describe('test', function() {
        var a = {b: function() {
        }};
        beforeEach(function() {
            spyOn(a, 'b').andCallFake(function(params) {
                return 'spy1';
            })
        })
        it('should return spy1', function() {
            expect(a.b()).toEqual('spy1');
        })
    
        it('should return spy2', function() {
            a.b.isSpy = false;
            spyOn(a, 'b').andCallFake(function(params) {
                return 'spy2';
            })
            expect(a.b()).toEqual('spy2');
        })
    
    })
    

    But maybe its a better idea to create a new suite for this case where you need an other behavior from your spy.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've not a clear idea about when I have to use the bind() function.
I am trying to clear missed call notifications from status bar programmatically but couldn't
I was hoping to clear up some questions I have been having with AJAX
I need help to clear my concepts. I have a function which toggle the
Anyone clear on how big a role Javascript will play when HTML 5 comes
Pretty clear from the title itself, what is meant by porting an application X
Collection.clear() will delete children whenever Session flushes. What about OneToOne? Setting to null is
I'm not clear on the differences between the current version of Ruby (1.8) and
I want to clear the list of projects on the start page...how do I
Is there a way clear or reset the outputcache for an entire website without

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.