Jasmineはnodejsによってプログラムで生成できるようです。次のコードでこれを行う方法を見つけました:
... Do database setup stuff here ...
.then(() => {
const Jasmine = require('jasmine');
const jasmine = new Jasmine();
jasmine.loadConfig({
spec_dir: 'spec'
,spec_files: [
'**/*[Ss]pec.js'
]
,helpers: [
'helpers/**/*.js'
]
,random: false
});
jasmine.execute();
});
このコードをpromise.then()コールバックに入れて、データベースのセットアップ作業を完了した後で実行できるため、これは機能します。