summaryrefslogtreecommitdiffstats
path: root/spec/run.js
blob: 1173cc20188d1a8541f99cafc8553a9a51ee6e68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()