When developing both server-side and client-side code in the same project it will be a great advancement to be able to run jasmine unit tests for both in visual studio.
Currently client-side tests can be executed in VS but the server-side tests need to be executed manually using .\node_modules\.bin\jasmine-node .\tests
```
/// <reference path="jasmine.d.ts" />
/// <reference path="node.d.ts" />
import http = require('http');
describe("Http status code", () => {
it("200 is OK", () => {
expect(http.STATUS_CODES[200]).toEqual('OK');
});
});
```
Comments: Adding Support for node.js Tools for Visual Studio would be great!
Currently client-side tests can be executed in VS but the server-side tests need to be executed manually using .\node_modules\.bin\jasmine-node .\tests
```
/// <reference path="jasmine.d.ts" />
/// <reference path="node.d.ts" />
import http = require('http');
describe("Http status code", () => {
it("200 is OK", () => {
expect(http.STATUS_CODES[200]).toEqual('OK');
});
});
```
Comments: Adding Support for node.js Tools for Visual Studio would be great!