mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 14:42:42 +01:00
23 lines
701 B
HTML
23 lines
701 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Jasmine Test Runner</title>
|
|
<link rel="stylesheet" href="lib/jasmine/jasmine.css">
|
|
<script src="lib/jasmine/jasmine.js"></script>
|
|
<script src="lib/jasmine/jasmine-html.js"></script>
|
|
|
|
<script src="../../accounting.js"></script>
|
|
|
|
<script src="core/formatNumberSpec.js"></script>
|
|
<script src="core/unformatSpec.js"></script>
|
|
<script src="core/formatMoneySpec.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
//run specs and add reporter
|
|
jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
|
|
jasmine.getEnv().execute();
|
|
</script>
|
|
</body>
|
|
</html>
|