mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-15 06:06:35 +08:00
11 lines
320 B
Text
11 lines
320 B
Text
|
import Jasmine from 'jasmine'
|
||
|
import JasmineExtensions from './extensions'
|
||
|
|
||
|
export default function execute(extendOpts) {
|
||
|
const jasmine = new Jasmine()
|
||
|
jasmine.loadConfigFile('spec/jasmine/config.json')
|
||
|
const jasmineExtensions = new JasmineExtensions()
|
||
|
jasmineExtensions.extend(extendOpts)
|
||
|
jasmine.execute()
|
||
|
}
|