Blame view

framework/admin/javascript/jquery-changetracker/spec/server.html 483 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <html>
  	<head>
  		<script src="/jspec/jspec.js"></script>
  		<script src="/jspec/jspec.xhr.js"></script>
  		<script src="/lib/yourlib.js"></script>
  		<script src="/spec/unit/spec.helper.js"></script>
  		<script>
  			function runSuites() {
  				JSpec
  				.exec('unit/spec.js')
  				.run({ reporter: JSpec.reporters.Server, verbose: true, failuresOnly: true, fixturePath: '/spec/fixtures' })
  				.report()
  			}
  		</script>
  	</head>
  	<body class="jspec" onLoad="runSuites();">
  	</body>
  </html>