- create a function in file1.js(under src/extensions/default/JavaScriptCodeHints/unittest-files/basic-test-files).
function callOtherMethods() {
testTryCatch();
}
function testTryCatch(){
}
2.open index.html(under src/extensions/default/JavaScriptCodeHints/unittest-files/basic-test-files), add callOtherMethods(); below function foo(), at line 28, save it.
3.open quick editor on callOtherMethods();
->quick editor shows up. Focus on testTryCatch();`, try jump to definition
Actual result: it doesn't go to file1.js, just highlight {}
Expect: jump to definition testTryCatch() in file1.js
2.open index.html(under src/extensions/default/JavaScriptCodeHints/unittest-files/basic-test-files), add
callOtherMethods();below function foo(), at line 28, save it.3.open quick editor on
callOtherMethods();->quick editor shows up. Focus on testTryCatch();`, try jump to definition
Actual result: it doesn't go to file1.js, just highlight {}
Expect: jump to definition
testTryCatch()in file1.js