summaryrefslogtreecommitdiffstats
path: root/spec/run.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/run.js')
-rw-r--r--spec/run.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/run.js b/spec/run.js
new file mode 100644
index 0000000..1173cc2
--- /dev/null
+++ b/spec/run.js
@@ -0,0 +1,17 @@
+import Jasmine from 'jasmine'
+const jasmine = new Jasmine()
+
+//jasmine.loadConfigFile('spec/support/jasmine.json')
+
+jasmine.loadConfig({
+ "spec_dir": "spec/spec",
+ "spec_files": [
+ "types/*.js",
+ // "!(helpers).js"
+ ],
+ "helpers": [
+ // "helpers.js"
+ ]
+})
+
+jasmine.execute()