You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
|
"http://www.w3.org/TR/html4/loose.dtd"> |
|
<html> |
|
<head> |
|
<title>LZString tests</title> |
|
|
|
<link rel="shortcut icon" type="image/png" href="lib/jasmine-1.3.1/jasmine_favicon.png"> |
|
<link rel="stylesheet" type="text/css" href="lib/jasmine-1.3.1/jasmine.css"> |
|
<script type="text/javascript" src="lib/jasmine-1.3.1/jasmine.js"></script> |
|
<script type="text/javascript" src="lib/jasmine-1.3.1/jasmine-html.js"></script> |
|
|
|
<!-- include source files here... --> |
|
<script type="text/javascript" src="../libs/lz-string.js"></script> |
|
|
|
<!-- include spec files here... --> |
|
<script type="text/javascript" src="lz-string-spec.js"></script> |
|
|
|
<script type="text/javascript"> |
|
(function() { |
|
var jasmineEnv = jasmine.getEnv(); |
|
jasmineEnv.updateInterval = 1000; |
|
|
|
var htmlReporter = new jasmine.HtmlReporter(); |
|
|
|
jasmineEnv.addReporter(htmlReporter); |
|
|
|
jasmineEnv.specFilter = function(spec) { |
|
return htmlReporter.specFilter(spec); |
|
}; |
|
|
|
var currentWindowOnload = window.onload; |
|
|
|
window.onload = function() { |
|
if (currentWindowOnload) { |
|
currentWindowOnload(); |
|
} |
|
execJasmine(); |
|
}; |
|
|
|
function execJasmine() { |
|
jasmineEnv.execute(); |
|
} |
|
|
|
})(); |
|
</script> |
|
|
|
</head> |
|
|
|
<body> |
|
</body> |
|
</html>
|
|
|