mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
38 lines
914 B
HTML
38 lines
914 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta content="text/html;charset=UTF-8" http-equiv="Content-Type"/>
|
|
<title>Jasmine suite</title>
|
|
<link rel="stylesheet" type="text/css" href="static/jasmine.css"/>
|
|
|
|
<script type="text/javascript">
|
|
(function() {
|
|
var jasmineEnv = jasmine.getEnv();
|
|
var trivialReporter = new jasmine.TrivialReporter(document, 'jasmine_runner');
|
|
|
|
jasmineEnv.addReporter(trivialReporter);
|
|
|
|
jasmineEnv.specFilter = function(spec) {
|
|
return trivialReporter.specFilter(spec);
|
|
};
|
|
|
|
window.onload = function() {
|
|
|
|
require('spec-suite');
|
|
|
|
jasmineEnv.execute();
|
|
|
|
};
|
|
})();
|
|
</script>
|
|
|
|
|
|
<script>
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="jasmine_runner"></div><div id="jasmine_content"></div>
|
|
</body>
|
|
</html>
|
|
|