Commit cb071f1a authored by Tristan Cavelier's avatar Tristan Cavelier

jio tests updated

parent 3e152964
This diff is collapsed.
/*jslint indent: 2, maxlen: 80 */ /*jslint indent: 2, maxlen: 80 */
/*global define, exports, window, localStorage, ok, deepEqual, sinon */ /*global define, exports, window, require, localStorage, start, ok, deepEqual,
sinon */
(function (dependencies, module) { (function (dependencies, module) {
"use strict"; "use strict";
...@@ -7,13 +8,13 @@ ...@@ -7,13 +8,13 @@
return define(dependencies, module); return define(dependencies, module);
} }
if (typeof exports === 'object') { if (typeof exports === 'object') {
module(exports); module(exports, require('sinon_qunit'));
} }
if (typeof window === 'object') { if (typeof window === 'object') {
window.test_util = {}; window.test_util = {};
module(window.test_util); module(window.test_util);
} }
}(['exports'], function (exports) { }(['exports', 'sinon_qunit'], function (exports) {
"use strict"; "use strict";
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<script src="../lib/qunit/qunit.js"></script> <script src="../lib/qunit/qunit.js"></script>
<script src="../lib/sinon/sinon.js"></script> <script src="../lib/sinon/sinon.js"></script>
<script src="../lib/sinon/sinon-qunit.js"></script> <script src="../lib/sinon/sinon-qunit.js"></script>
<script src="../src/promy/promy.js"></script> <script src="../lib/rsvp/rsvp-custom.js"></script>
<script src="../src/sha256.amd.js"></script> <script src="../src/sha256.amd.js"></script>
<script src="../jio.js"></script> <script src="../jio.js"></script>
<script src="jio/util.js"></script> <script src="jio/util.js"></script>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
require.config({ require.config({
"paths": { "paths": {
"promy": "../src/promy/promy", "rsvp": "../lib/rsvp/rsvp-custom.amd",
"sha256": "../src/sha256.amd", "sha256": "../src/sha256.amd",
"jio": "../jio", "jio": "../jio",
"jio_tests": "jio/tests", "jio_tests": "jio/tests",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment