UNPKG
sunpietro-grover
Version:
latest (1.0.0)
1.0.0
0.1.17
PhantomJS wrapper for YUITest
github.com/yui/grover
yui/grover
sunpietro-grover
/
lib
/
chars.js
11 lines
(7 loc)
•
279 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
//Opening this on windows will likely bork the characters
exports
.
__defineGetter__
(
'good'
,
function
(
) {
return
((process.
platform
===
'win32'
) ?
'OK'
:
"✔"
); });
exports
.
__defineGetter__
(
'bad'
,
function
(
) {
return
((process.
platform
===
'win32'
) ?
'X'
:
"✖"
); });