Jasmine
コンストラクターのオプション
メンバー
globals :boolean|undefined
Jasmine の仕様記述インターフェースを表すグローバル変数 (describe、it など) を作成するかどうか。false に設定した場合は、jasmine-core の noGlobals
メソッド経由で仕様記述インターフェースにアクセスできます。例:
const {describe, it, expect, jasmine} = require('jasmine-core').noGlobals();
種類
- boolean | undefined
- 既定値
- true
projectBaseDir :string|undefined
プロジェクトの基本ディレクトリへのパス。現行作業ディレクトリに対する絶対パスまたは相対パスで行えます。指定しない場合は、現行作業ディレクトリが使用されます。
種類
- string | undefined