TAP::Formatter::HTML -- External (cont)
Once you have your javascript and css files in your web root you need to modify your code to use them
my $formatter = TAP::Formatter::HTML->new;
$formatter->verbosity(-1);
$formatter->js_uris(['/jquery-1.2.6.pack.js','/default_report.js']);
$formatter->css_uris(['/default_page.css','/default_report.css']);
$formatter->force_inline_css(0);
$formatter->output_file( '/home/dcarter/projects/presentations/simple-smoke/test.html' );
my $harness = TAP::Harness->new({ formatter => $formatter });