travis-web/public/spec.html
Piotr Sarnacki f7422e15c7 Fix specs filtering
We need to check newer versions of Jasmine and if they're broken, it
would be nice to contribute, but for now I'll just do this quick fix.
2012-08-12 02:21:43 +02:00

30 lines
979 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Travis CI - Distributed Continuous Integration Platform for the Open Source Community</title>
<link rel="stylesheet" href="/stylesheets/application.css">
<link rel="stylesheet" href="/stylesheets/jasmine.css">
<script src="/javascripts/vendor.js"></script>
<script src="/javascripts/application.js"></script>
<script src="/javascripts/specs/vendor.js"></script>
<script src="/javascripts/specs/specs.js"></script>
</head>
<body>
<script>
window.cachedSearch = window.location.search;
minispade.require('mocks')
for(key in minispade.modules)
if(key.match(/_spec$/))
minispade.require(key);
var console_reporter = new jasmine.ConsoleReporter()
jasmine.getEnv().addReporter(new jasmine.HtmlReporter());
/* jasmine.getEnv().addReporter(console_reporter); */
jasmine.getEnv().execute();
</script>
</body>
</html>