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()