Shortcode not working in widget

{ // deep_execution_view
const authorName = "Ankit Agrawal";
//
const publishDate = "January 19, 2016";

BY default short-codes are not working in widget area for this you have to add one line code in your functions.php file

add_filter('widget_text', 'do_shortcode');
}