ReSharper を使用して JavaScript 単体テストを実行したいと考えています。しかし、ReSharper でカスタム テスト関数を検出できません。
customTest("my test", function() {
// do some stuff to test my code
ok("The test run successfully");
}
function customTest(testName, testFunc) {
// do some stuff to initialize the test object
// this is supposed to happen for every test
test(testName, testFunc);
}
このファイルを実行すると、すべてのテストが実行されますが、テストは ReSharper テストランナーに追加されません。何か案は?