Fix configurations for tests cause of lib relocation

This commit is contained in:
Christoph Diehl 2017-04-23 03:05:38 +03:00
parent 8ecf429681
commit 3bf2bb1e0d
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ module.exports = function(config) {
frameworks: ['qunit'],
files: [
'../random/*.js',
'../lib/random/*.js',
'**/*.js'
],

View File

@ -15,8 +15,8 @@
<div id="qunit-fixture"></div>
<script src="https://code.jquery.com/qunit/qunit-2.3.0.js"></script>
<!-- Include sources -->
<script src="../random/mersennetwister.js"></script>
<script src="../random/random.js"></script>
<script src="../lib/random/mersennetwister.js"></script>
<script src="../lib/random/random.js"></script>
<!-- Include tests -->
<script src="random/mersennetwister.js"></script>
<script src="random/random.js"></script>