if (psiFile instanceof JSFile || psiFile instanceof MxmlParserDefinition.MxmlFile){
goToFlexUnitTestOrCodeAction(e);
}
else{
//hack: do the old gotoTest if it's not a JS file.
final GotoTestOrCodeAction gotoTestOrCodeAction = new GotoTestOrCodeAction();
gotoTestOrCodeAction.actionPerformed(e);
}
}