Hi,
VS: 2013
NTVS: 19-Dec dev build
The "Group By" > "Class" feature in the Test Explorer groups by exported tests rather than the name of the file in which they are defined.
E.g.
```typescript
// foo.test.ts
export function my_test_one(){
}
export function my_test_two(){
}
```
gives me two entries in the test explorer
```
my_test_one (1)
my_test_two (1)
```
It should be
```
foo.test (2)
```
Thanks.
VS: 2013
NTVS: 19-Dec dev build
The "Group By" > "Class" feature in the Test Explorer groups by exported tests rather than the name of the file in which they are defined.
E.g.
```typescript
// foo.test.ts
export function my_test_one(){
}
export function my_test_two(){
}
```
gives me two entries in the test explorer
```
my_test_one (1)
my_test_two (1)
```
It should be
```
foo.test (2)
```
Thanks.