X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/540ab2ebda6121a52a15f82e531ef8ba558024b1..bedc5daf8a42c50c84b8c43b5924c10d07ed0b3a:/tests/main.js?ds=sidebyside

diff --git a/tests/main.js b/tests/main.js
index 8a093d9..cc20549 100644
--- a/tests/main.js
+++ b/tests/main.js
@@ -1,15 +1,38 @@
-(function() {
-
-    mocha.setup('tdd');
-
-    var tests = Object.keys(window.__karma__.files).filter(function (file) {
-      return /\.test\.js$/.test(file);
-    });
-
-    require({
-      baseUrl: '/base/',
-      deps: tests,
-      callback: window.__karma__.start
-    });
-
+(function() {
+
+    mocha.setup('bdd');
+
+    var tests = Object.keys(window.__karma__.files).filter(function (file) {
+      return /\.test3\.js$/.test(file);
+    });
+
+    require({
+      baseUrl: '/base/',
+      deps: tests,
+      callback: window.__karma__.start,
+        shim: {
+            'libs/jquery-1.9.1.min': {
+                exports: '$',
+            },
+            'libs/underscore-min': {
+                exports: '_'
+            },
+            'libs/bootstrap/js/bootstrap.min': {
+                deps: ['libs/jquery-1.9.1.min']
+            },
+            'libs/backbone-min': {
+                exports: 'Backbone',
+                deps: ['libs/jquery-1.9.1.min', 'libs/underscore-min']
+            },
+            'libs/sinon-1.7.3': {
+                exports: 'sinon'
+            }
+        },
+        map: {
+            '*': {
+                'libs/sinon': 'libs/sinon-1.7.3'
+            }
+        }
+    });
+
 })();
\ No newline at end of file