bundlableNode.notifyObservers(event, notifyForNode);
}
@Override
public LinkedAsset getLinkedAsset(String requirePath) throws RequirePathException {
LinkedAsset linkedAsset = bundlableNode.getLinkedAsset(requirePath);
if((linkedAsset instanceof SourceModule) && (linkedAsset.assetLocation() instanceof TestAssetLocation)) {
linkedAsset = new JsTestDriverEmptyTestSourceModule((SourceModule) linkedAsset);
}
return linkedAsset;
}