Get rid bootstrap, jquery and selector buttons

Just a little CSS and one big RUN TEST button
This commit is contained in:
Nathan Shively-Sanders 2017-06-01 08:19:13 -07:00
parent 580d7c628b
commit 8f6e605f44

View file

@ -5,19 +5,22 @@
<title>Mocha Tests</title>
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
<link rel="icon" href="./webhost/favicon-32x32.png"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
.btn {
color: #ffffff;
background: #3498db;
border-radius: 30px;
font-size: 50px;
}
.btn:hover { background: #50c7ff; }
.btn:focus { background: #50c7ff; }
</style>
</head>
<body>
<div id='setup'>
<button id='runTestBtn' onclick='runTests()' type="button" class="btn btn-success btn-lg">Run Tests</button><br /><br /><br />
<div>
<button id='selectCompilerBtn' onclick='location.href="http://localhost:8888/tests/webTestResults.html?grep=compiler"' type="button" class="btn btn-warning">Select Compiler Tests</button>
<button id='selectFourslashBtn' onclick='location.href="http://localhost:8888/tests/webTestResults.html?grep=fourslash"' type="button" class="btn btn-warning">Select Fourslash Tests</button>
</div>
</div>
<div id="mocha"></div>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.0.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script>mocha.setup('bdd')</script>
<script src="../built/local/bundle.js"></script>