Getting following error:
------ Discover test started ------
An exception occurred while test discoverer 'ChutzpahTestDiscoverer' was loading tests. Exception: Method not found: 'Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.get_Traits()'.
========== Discover test finished: 0 found (0:00:00.5200297) ==========
Using Jasmin framework:
/// <reference path="../test/jasmine.js" />
describe("A suite", function () {
it("contains spec with an expectation", function () {
expect(true).toBe(true);
});
});
Comments: I have seen this error before. It usually means you re not using the latest update for Visual Studio. Chutzpah only support the latest update for each version of VS. So if you have VS 2013 then make sure you are using the most recently released update for it.
------ Discover test started ------
An exception occurred while test discoverer 'ChutzpahTestDiscoverer' was loading tests. Exception: Method not found: 'Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.get_Traits()'.
========== Discover test finished: 0 found (0:00:00.5200297) ==========
Using Jasmin framework:
/// <reference path="../test/jasmine.js" />
describe("A suite", function () {
it("contains spec with an expectation", function () {
expect(true).toBe(true);
});
});
Comments: I have seen this error before. It usually means you re not using the latest update for Visual Studio. Chutzpah only support the latest update for each version of VS. So if you have VS 2013 then make sure you are using the most recently released update for it.