Skip to content

Commit 8f6e605

Browse files
committed
Get rid bootstrap, jquery and selector buttons
Just a little CSS and one big RUN TEST button
1 parent 580d7c6 commit 8f6e605

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

tests/webTestResults.html

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,22 @@
55
<title>Mocha Tests</title>
66
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
77
<link rel="icon" href="./webhost/favicon-32x32.png"/>
8-
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
8+
<style>
9+
.btn {
10+
color: #ffffff;
11+
background: #3498db;
12+
border-radius: 30px;
13+
font-size: 50px;
14+
}
15+
.btn:hover { background: #50c7ff; }
16+
.btn:focus { background: #50c7ff; }
17+
</style>
918
</head>
1019
<body>
1120
<div id='setup'>
1221
<button id='runTestBtn' onclick='runTests()' type="button" class="btn btn-success btn-lg">Run Tests</button><br /><br /><br />
13-
<div>
14-
<button id='selectCompilerBtn' onclick='location.href="http://localhost:8888/tests/webTestResults.html?grep=compiler"' type="button" class="btn btn-warning">Select Compiler Tests</button>
15-
<button id='selectFourslashBtn' onclick='location.href="http://localhost:8888/tests/webTestResults.html?grep=fourslash"' type="button" class="btn btn-warning">Select Fourslash Tests</button>
16-
</div>
1722
</div>
18-
1923
<div id="mocha"></div>
20-
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.0.js"></script>
2124
<script src="../node_modules/mocha/mocha.js"></script>
2225
<script>mocha.setup('bdd')</script>
2326
<script src="../built/local/bundle.js"></script>

0 commit comments

Comments
 (0)