Top "Jasmine2.0" questions

Jasmine is an open source testing framework for JavaScript.

Spec has no expectations - Jasmine testing the callback function

I have a method which is being called using a d3 timer. Whenever the method is called, the method emits …

javascript angular typescript jasmine jasmine2.0
Reset call on Jasmine spy does not return

I'm using a Jasmine (2.2.0) spy to see if a certain callback is called. Test code: it('tests', function(done) { var …

javascript jasmine spy jasmine2.0
Jasmine calls.length and callCount are undefined

I'm trying to test my chrome extension with Jasmine but I'm having trouble getting calls.length and callCount to behave …

javascript google-chrome-extension jasmine bdd jasmine2.0
Explain about async/ await in Protractor

I'm new to protractor. How does async/await in this function works? Can anybody explain it to me? it('TC_01 …

javascript protractor jasmine2.0
How jasmine clock works?

I don't want to read code for hours to find the relevant part, but I am curious how jasmine implements …

javascript jasmine jasmine2.0 ecmascript-7
Protractor/Jasmine2 - async callback not invoked within specified timeout

I've struggled in problem with my e2e tests runs on selenium grid. Sometimes the tests are failed due to …

javascript testing error-handling protractor jasmine2.0
Is it possible to force Protractor to pass or skip a test with a message to the console?

I'm working with a system that has several external system dependencies. These external systems are only hooked into certain SDLC …

angularjs automated-tests protractor qa jasmine2.0
Getting "$digest already in progress" in async test with Jasmine 2.0

I know that calling $digest or $apply manually during a digest cycle will cause a "$digest already in progress" error …

angularjs jasmine jasmine2.0
Angular testing mock subscribed property

I have a service with 2 properties: Service ... public usernameAnnounced; private username: Subject<string> = new Subject<string>(); …

angular typescript jasmine karma-jasmine jasmine2.0
How to create Protractor reports with Jasmine2

I have very recently started to use Protractor lib to test angularjs site.I tried to use below 2 libs to …

angularjs protractor jasmine2.0