JS Unit Testing

  • What is Unit Testing?

  • TDD vs BDD

  • Why Jasmine 2.0?

Example

describe("Validating the form", function() {
  it("Should validate name", function() {
    expect(name).toBe(defined);

    //More test cases
  });

  it("Should check age", function() {
    expect(age).toBe(defined);

    //More test cases
  });

});

JS Unit Testing

By Anuj Upadhyay

JS Unit Testing

  • 267