I have this Fiddle which illustrates my issue. I'm pretty sure I have it set up correctly, but I keep seeing that Marionette won't render the view.
var aApp = new Marionette.Application();
vTestSetup = Marionette.ItemView.extend({
template: "#tmplTest"
});
var testView = new vTestSetup();
aApp.addRegions({
appRegion: "#dApp"
});
aApp.appRegion.attachView(testView);
aApp.appRegion.show(testView);
aApp.start();