Skip to content
This repository was archived by the owner on Feb 20, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
185 changes: 159 additions & 26 deletions examples/full/test-agent/vendor/mocha/mocha.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,26 @@
@charset "utf-8";

body {
margin:0;
}

#mocha {
font: 20px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
padding: 60px 50px;
margin: 60px 50px;
}

#mocha h1, h2 {
#mocha ul,
#mocha li {
margin: 0;
padding: 0;
}

#mocha ul {
list-style: none;
}

#mocha h1,
#mocha h2 {
margin: 0;
}

Expand All @@ -14,11 +30,24 @@ body {
font-weight: 200;
}

#mocha h1 a {
text-decoration: none;
color: inherit;
}

#mocha h1 a:hover {
text-decoration: underline;
}

#mocha .suite .suite h1 {
margin-top: 0;
font-size: .8em;
}

#mocha .hidden {
display: none;
}

#mocha h2 {
font-size: 12px;
font-weight: normal;
Expand All @@ -31,21 +60,20 @@ body {

#mocha .test {
margin-left: 15px;
}

#mocha .test:hover h2::after {
position: relative;
top: 0;
right: -10px;
content: '(view source)';
font-size: 12px;
font-family: arial;
color: #888;
overflow: hidden;
}

#mocha .test.pending:hover h2::after {
content: '(pending)';
font-family: arial;
font-family: arial, sans-serif;
}

#mocha .test.pass.medium .duration {
background: #c09853;
}

#mocha .test.pass.slow .duration {
background: #b94a48;
}

#mocha .test.pass::before {
Expand All @@ -54,7 +82,26 @@ body {
display: block;
float: left;
margin-right: 5px;
color: #00c41c;
color: #00d6b2;
}

#mocha .test.pass .duration {
font-size: 9px;
margin-left: 5px;
padding: 2px 5px;
color: #fff;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}

#mocha .test.pass.fast .duration {
display: none;
}

#mocha .test.pending {
Expand Down Expand Up @@ -85,53 +132,139 @@ body {

#mocha .test pre.error {
color: #c00;
max-height: 300px;
overflow: auto;
}

/**
* (1): approximate for browsers not supporting calc
* (2): 42 = 2*15 + 2*10 + 2*1 (padding + margin + border)
* ^^ seriously
*/
#mocha .test pre {
display: inline-block;
display: block;
float: left;
clear: left;
font: 12px/1.5 monaco, monospace;
margin: 5px;
padding: 15px;
border: 1px solid #eee;
max-width: 85%; /*(1)*/
max-width: calc(100% - 42px); /*(2)*/
word-wrap: break-word;
border-bottom-color: #ddd;
-webkit-border-radius: 3px;
-webkit-box-shadow: 0 1px 3px #eee;
-moz-border-radius: 3px;
-moz-box-shadow: 0 1px 3px #eee;
border-radius: 3px;
}

#mocha .test h2 {
position: relative;
}

#mocha .test a.replay {
position: absolute;
top: 3px;
right: 0;
text-decoration: none;
vertical-align: middle;
display: block;
width: 15px;
height: 15px;
line-height: 15px;
text-align: center;
background: #eee;
font-size: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
-webkit-transition: opacity 200ms;
-moz-transition: opacity 200ms;
transition: opacity 200ms;
opacity: 0.3;
color: #888;
}

#mocha .test:hover a.replay {
opacity: 1;
}

#mocha-report.pass .test.fail {
display: none;
}

#mocha-report.fail .test.pass {
display: none;
}

#error {
#mocha-report.pending .test.pass,
#mocha-report.pending .test.fail {
display: none;
}
#mocha-report.pending .test.pass.pending {
display: block;
}

#mocha-error {
color: #c00;
font-size: 1.5 em;
font-size: 1.5em;
font-weight: 100;
letter-spacing: 1px;
}

#stats {
#mocha-stats {
position: fixed;
top: 15px;
right: 10px;
font-size: 12px;
margin: 0;
color: #888;
z-index: 1;
}

#stats .progress {
#mocha-stats .progress {
float: right;
padding-top: 0;
}

#stats em {
#mocha-stats em {
color: black;
}

#stats li {
#mocha-stats a {
text-decoration: none;
color: inherit;
}

#mocha-stats a:hover {
border-bottom: 1px solid #eee;
}

#mocha-stats li {
display: inline-block;
margin: 0 5px;
list-style: none;
padding-top: 11px;
}

code .comment { color: #ddd }
code .init { color: #2F6FAD }
code .string { color: #5890AD }
code .keyword { color: #8A6343 }
code .number { color: #2F6FAD }
#mocha-stats canvas {
width: 40px;
height: 40px;
}

#mocha code .comment { color: #ddd; }
#mocha code .init { color: #2f6fad; }
#mocha code .string { color: #5890ad; }
#mocha code .keyword { color: #8a6343; }
#mocha code .number { color: #2f6fad; }

@media screen and (max-device-width: 480px) {
#mocha {
margin: 60px 0px;
}

#mocha #stats {
position: absolute;
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "test-agent",
"version": "0.22.12",
"version": "0.22.17",
"author": "James Lal",
"description": "execute client side tests from browser report back to cli",
"main": "lib/node/index.js",
Expand Down
Loading