UNPKG
mocha-simple-html-reporter
Version:
latest (2.0.0)
2.0.0
1.1.0
1.0.1
1.0.0
HTML reporter for Mocha
github.com/blond/mocha-simple-html-reporter
blond/mocha-simple-html-reporter
mocha-simple-html-reporter
/
lib
/
load-stylesheet.js
12 lines
(7 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
const
fs =
require
(
'fs'
);
const
findStylesheet =
require
(
'./find-stylesheet'
);
module
.
exports
=
() =>
{
const
paths =
findStylesheet
();
return
paths.
map
(
stylesheetPath
=>
fs.
readFileSync
(stylesheetPath,
'utf-8'
)).
join
(
''
); };