Browse Source
JsTestDriver has made it obsolete. Also add explicitly the used config to the Makefile.
2 changed files with 1 additions and 51 deletions
@ -1,51 +0,0 @@ |
|||||||
<!DOCTYPE html> |
|
||||||
<html> |
|
||||||
<head> |
|
||||||
<title>pdf.js unit test</title> |
|
||||||
|
|
||||||
<link rel="shortcut icon" type="image/png" href="../../external/jasmine/jasmine_favicon.png"> |
|
||||||
<link rel="stylesheet" type="text/css" href="../../external/jasmine/jasmine.css"> |
|
||||||
|
|
||||||
<script type="text/javascript" src="../../external/jasmine/jasmine.js"></script> |
|
||||||
<script type="text/javascript" src="../../external/jasmine/jasmine-html.js"></script> |
|
||||||
|
|
||||||
<!-- include spec files here... --> |
|
||||||
<script type="text/javascript" src="obj_spec.js"></script> |
|
||||||
|
|
||||||
<!-- include source files here... --> |
|
||||||
<script type="text/javascript" src="../../src/obj.js"></script> |
|
||||||
|
|
||||||
<script type="text/javascript"> |
|
||||||
'use strict'; |
|
||||||
|
|
||||||
(function pdfJsUnitTest() { |
|
||||||
var jasmineEnv = jasmine.getEnv(); |
|
||||||
jasmineEnv.updateInterval = 1000; |
|
||||||
|
|
||||||
var trivialReporter = new jasmine.TrivialReporter(); |
|
||||||
|
|
||||||
jasmineEnv.addReporter(trivialReporter); |
|
||||||
|
|
||||||
jasmineEnv.specFilter = function pdfJsUnitTestSpecFilter(spec) { |
|
||||||
return trivialReporter.specFilter(spec); |
|
||||||
}; |
|
||||||
|
|
||||||
var currentWindowOnload = window.onload; |
|
||||||
|
|
||||||
window.onload = function pdfJsUnitTestOnload() { |
|
||||||
if (currentWindowOnload) { |
|
||||||
currentWindowOnload(); |
|
||||||
} |
|
||||||
execJasmine(); |
|
||||||
}; |
|
||||||
|
|
||||||
function execJasmine() { |
|
||||||
jasmineEnv.execute(); |
|
||||||
} |
|
||||||
})(); |
|
||||||
</script> |
|
||||||
</head> |
|
||||||
<body> |
|
||||||
</body> |
|
||||||
</html> |
|
||||||
|
|
Loading…
Reference in new issue