Skip to content
This repository was archived by the owner on May 11, 2021. It is now read-only.

Commit 1007c22

Browse files
author
Ben Eater
committed
Move the tests we actually use to a more obvious location
Test Plan: http://exercises.ka.local/test/?noglobals=true Auditors: joel
1 parent 3e7fc8e commit 1007c22

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

utils/test/index.html renamed to test/index.html

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
55
<title>Utility Test Suite</title>
66
<!-- Include dependencies -->
7-
<script src="../../local-only/jquery.js"></script>
8-
<script src="../../local-only/jed.js"></script>
9-
<script src="../../local-only/i18n.js"></script>
10-
<script src="../../local-only/localeplanet/icu.en-US.js"></script>
7+
<script src="../local-only/jquery.js"></script>
8+
<script src="../local-only/jed.js"></script>
9+
<script src="../local-only/i18n.js"></script>
10+
<script src="../local-only/localeplanet/icu.en-US.js"></script>
1111
<script>
1212
// TODO(alpert): Ugh, should probably load khan-exercise.js for real...
1313
var Khan = {
@@ -42,33 +42,33 @@
4242
return this;
4343
};
4444
</script>
45-
<script src="../../local-only/underscore.js"></script>
45+
<script src="../local-only/underscore.js"></script>
4646

4747
<!-- Include QUnit -->
48-
<link rel="stylesheet" href="../../test/qunit/qunit/qunit.css" type="text/css" media="screen">
49-
<script src="../../test/qunit/qunit/qunit.js"></script>
48+
<link rel="stylesheet" href="qunit/qunit/qunit.css" type="text/css" media="screen">
49+
<script src="qunit/qunit/qunit.js"></script>
5050

5151
<!-- Include utility files and tests. -->
52-
<script src="../../exercises-stub.js"></script>
52+
<script src="../exercises-stub.js"></script>
5353

54-
<script src="../math.js"></script>
54+
<script src="../utils/math.js"></script>
5555
<script src="math.js"></script>
56-
<script src="../expressions.js"></script>
56+
<script src="../utils/expressions.js"></script>
5757
<script src="expressions.js"></script>
58-
<script src="../polynomials.js"></script>
58+
<script src="../utils/polynomials.js"></script>
5959
<script src="polynomials.js"></script>
60-
<script src="../tex.js"></script>
61-
<script src="../tmpl.js"></script>
60+
<script src="../utils/tex.js"></script>
61+
<script src="../utils/tmpl.js"></script>
6262
<script src="tmpl.js"></script>
63-
<script src="../calculator.js"></script>
63+
<script src="../utils/calculator.js"></script>
6464
<script src="calculator.js"></script>
65-
<script src="../kmatrix.js"></script>
65+
<script src="../utils/kmatrix.js"></script>
6666
<script src="kmatrix.js"></script>
67-
<script src="../kvector.js"></script>
67+
<script src="../utils/kvector.js"></script>
6868
<script src="kvector.js"></script>
69-
<script src="../answer-types.js"></script>
69+
<script src="../utils/answer-types.js"></script>
7070
<script src="answer-types.js"></script>
71-
<script src="../rational-expressions.js"></script>
71+
<script src="../utils/rational-expressions.js"></script>
7272
<script src="rational-expressions.js"></script>
7373
</head>
7474
<body>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)