window.open("/view/testReport", " testReport ").setTimeout(function() {
    this.close();
}, 100);

위와 같은 방법으로 하게되면 window.open 이후 100ms 이후 자동으로 창이 닫히게 됩니다.