A WebdriverIO plugin. Adapter for Jasmine testing framework.
npm install @wdio/jasmine-frameworkWDIO Jasmine Framework Adapter
==============================
> A WebdriverIO plugin. Adapter for Jasmine testing framework.
The easiest way is to keep @wdio/jasmine-framework as a devDependency in your package.json, via:
``sh`
npm install @wdio/jasmine-framework --save-dev
Instructions on how to install WebdriverIO can be found here.
Following code shows the default wdio test runner configuration...
`js`
// wdio.conf.js
module.exports = {
// ...
framework: 'jasmine'
jasmineOpts: {
defaultTimeoutInterval: 10000
}
// ...
};
OptionsType: Number
Default: 10000
Type: Function
Default: null
Type: RegExp | string
Default: undefined
Type: Boolean
Default: false
Type: Boolean
Default: true
Type: Booleanfalse
Default:
) execution on first spec (it) failure (other suites continue running)Type:
Boolean
Default: false$3
Stops a spec (it) execution on a first expectation failure (other specs continue running)Type:
Boolean
Default: false$3
Require modules prior to requiring any helper or spec files.Type:
String[]
Default: []$3
Require helper files prior to requiring any spec files.Type:
String[]
Default: []`----
For more information on WebdriverIO see the homepage.