mirror of
https://github.com/atom/atom.git
synced 2026-01-23 22:08:08 -05:00
Remove spec-suite.html
This commit is contained in:
2
Rakefile
2
Rakefile
@@ -8,7 +8,7 @@ task :build do
|
||||
|
||||
dest = File.join(built_dir, contents_dir, "Resources")
|
||||
|
||||
%w( spec-suite.html index.html src docs static extensions test vendor ).each do |dir|
|
||||
%w(index.html src docs static extensions test vendor ).each do |dir|
|
||||
rm_rf File.join(dest, dir)
|
||||
cp_r dir, File.join(dest, dir)
|
||||
end
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
<!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>
|
||||
|
||||
Reference in New Issue
Block a user