I just wonder if there is a simple tutorial showing how to test javascript in visual studio with Chutzpah, require.js and jasmine.
Basically, i want to run the tests wi
I managed to make the tests run simply by adding an AMD module where i load all the test modules; That is, i created the all.test.js file in which i simply load all the test modules as dependencies:
requirejs.config({
// same as the applications main baseUrl
baseUrl: '../',
});
requirejs([
'tests/moduleA',
'tests/moduleB'
],
function () { }
);
In a sense, this is the main requires module for the test modules.
Now you right click and open it in a browser or you can use the test runner to run the tests.