Fix configurations for tests cause of lib relocation
This commit is contained in:
parent
8ecf429681
commit
3bf2bb1e0d
2 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ module.exports = function(config) {
|
|||
frameworks: ['qunit'],
|
||||
|
||||
files: [
|
||||
'../random/*.js',
|
||||
'../lib/random/*.js',
|
||||
'**/*.js'
|
||||
],
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue