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

  • SEARCH
  • Home
  • 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 8704619
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T03:09:11+00:00 2026-06-13T03:09:11+00:00

I am writing a jasmine spec against my backbone app. However, I got stuck

  • 0

I am writing a jasmine spec against my backbone app. However, I got stuck with this problem. Not sure why my spy function doesn’t get invoked. I want to make sure when the model is changed, it should call #render.

Here is my backbone view:

class App.Views.Main extends Backbone.View
  initialize: () ->
    @model.on("change", @render, this)

  render: () ->
    console.log('rendering')
    return

Here is my jasmine spec:

it "should render when change is triggered", ->
  renderSpy = sinon.spy(@view, 'render')
  @view.model.trigger('change')

  expect(renderSpy.called).toBeTruthy()

Another thing that confuses me is that when this spec runs, it actually invokes the original method. The console log is always displayed. Anyone could help me?

Updated:

As answered below by Leonardo, I make changes with the following changes:

it "should render when reset is triggered", ->
  renderSpy = sinon.spy(App.Views.Main.prototype, 'render')
  @view.model.trigger('change')

  expect(@renderSpy.called).toBeTruthy()
  renderSpy.restore()

It works, but the problem is that it invokes the original method. I just wonder why?

  • 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-06-13T03:09:12+00:00Added an answer on June 13, 2026 at 3:09 am

    I think this is the same that is happenning here:

    https://stackoverflow.com/a/9012788/603175

    Basically, you need to create the spy before you execute the constructor that executes the event listening, which binds the function to ‘this’ context.

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

Sidebar

Related Questions

I'm writing a Rails app which has the following jasmine spec: describe buttons, ->
I am writing tests for a web application using backbone and backbone.marionette through jasmine.
I've been writing JavaScript unit tests using Jasmine. However, those tests run inside a
I really got an annoying error when writing jasmine tests for one of my
I am writing unit test using Jasmine in a web app using BackboneJS. There
Writing a test app to emulate PIO lines, I have a very simple Python/Tk
Writing a python program, and I came up with this error while using the
Writing my first C# application...never touched the language before and not much of a
Writing a recursive function, I want one fn that executes when the list has
Writing an app that will include the ability to decompress zip and rar files.

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.