Hi,
NTVS: 26-Sep
VS: 2013 Ultimate Update 3.
As of this version the link to the assert messages are not being displayed on the test explorer tab. This makes it impossible to see which assert has failed when there are multiple asserts in a single test.
The repro is not straightforward, because occasionally the link appears, but disappears after changes to the test file. Try running a test file with two tests:
```TypeScript
import assert = require('assert');
export function foo(){
assert.strictEqual('foo', 'bar', 'Error message two');
}
export function bar() {
assert.strictEqual('foo', 'bar', 'Error message two');
}
```
On the test explore, when the failed test is clicked, there is a link to the "Source", but the "Output" link is missing.
NTVS: 26-Sep
VS: 2013 Ultimate Update 3.
As of this version the link to the assert messages are not being displayed on the test explorer tab. This makes it impossible to see which assert has failed when there are multiple asserts in a single test.
The repro is not straightforward, because occasionally the link appears, but disappears after changes to the test file. Try running a test file with two tests:
```TypeScript
import assert = require('assert');
export function foo(){
assert.strictEqual('foo', 'bar', 'Error message two');
}
export function bar() {
assert.strictEqual('foo', 'bar', 'Error message two');
}
```
On the test explore, when the failed test is clicked, there is a link to the "Source", but the "Output" link is missing.