Setup Chutzpah to Run Javascript Tests in VisualStudio

  1. testing library/framework files
  2. code under test file(s)
  3. any additional files required to run code under test
/// <reference path="../../../myapplication.web/scripts/jquery-1.10.2.min.js" />

/// <reference path="../../../myapplication.web/app/app.js" />
/// <reference path="../../../myapplication.web/app/home/homecontroller.js" />


describe('home page', function() {

    it('should return tile as Home', function() {

        expect('home').toBe('home');

    });

comments powered by Disqus