mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8256228e69
MINOR Updated jQuery.concrete references to point to the new "entwine" name git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102695 467b73ca-7a2a-4603-9d3b-597d59a354a9
29 lines
812 B
HTML
29 lines
812 B
HTML
<html>
|
|
<head>
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"></script>
|
|
<script src="/jspec/jspec.js"></script>
|
|
<script src="/jspec/jspec.jquery.js"></script>
|
|
<script src="/jspec/jspec.xhr.js"></script>
|
|
<script src="helpers.js"></script>
|
|
<script src="spec.grammar-less.js"></script>
|
|
<script>
|
|
function runSuites() {
|
|
JSpec
|
|
.exec('spec.grammar.js')
|
|
.exec('spec.js')
|
|
.exec('spec.matchers.js')
|
|
.exec('spec.utils.js')
|
|
.exec('spec.fixtures.js')
|
|
.exec('spec.shared-behaviors.js')
|
|
.exec('spec.jquery.js')
|
|
.exec('spec.modules.js')
|
|
.exec('spec.xhr.js')
|
|
.exec('spec.jquery.xhr.js')
|
|
.run({ formatter : JSpec.formatters.Server })
|
|
.report()
|
|
}
|
|
</script>
|
|
</head>
|
|
<body class="jspec" onLoad="runSuites();">
|
|
</body>
|
|
</html> |