I had a file with "test" in it. It showed up in TE, ran and passed. I then added "test2" and it never shows up in TE.
Using jasmine
describe('test', function () {
it('basic', function () {
expect(true);
});
});
describe('test2', function () {
it('basic', function () {
expect(true);
});
});
And this chutzpah.json
{
"Framework": "jasmine",
"TestFileTimeout": "3000",
"TestHarnessLocationMode": "SettingsFileAdjacent",
"TypeScriptCodeGenTarget" : "ES5",
"RootReferencePathMode":"SettingsFileDirectory",
"CodeCoverageIncludes": [],
"CodeCoverageExcludes": []
}
Comments: Thanks for filing this. This may be do to a breaking change in VS 2013. I will investigate.
Using jasmine
describe('test', function () {
it('basic', function () {
expect(true);
});
});
describe('test2', function () {
it('basic', function () {
expect(true);
});
});
And this chutzpah.json
{
"Framework": "jasmine",
"TestFileTimeout": "3000",
"TestHarnessLocationMode": "SettingsFileAdjacent",
"TypeScriptCodeGenTarget" : "ES5",
"RootReferencePathMode":"SettingsFileDirectory",
"CodeCoverageIncludes": [],
"CodeCoverageExcludes": []
}
Comments: Thanks for filing this. This may be do to a breaking change in VS 2013. I will investigate.