protractor-tartare
v1.0.1
Published
Tartare framework plugin for Protractor
Downloads
8
Maintainers
Readme
Protractor Tartare Framework
The Tartare family: tartare | tartare-chai | tartare-mock | tartare-util | tartare-collections | tartare-logs
This framework allows you to use Protractor along with Tartare, so you can code tests for your AngularJS application using the BDD/Gherkin syntax provided by Tartare.
Install
This plugin is available as an NPM module.
$ npm install protractor-tartare
Usage
To use the Tartare framework in Protractor, configure it as a Protractor custom framework:
exports.config = {
framework: 'custom',
frameworkPath: require.resolve('protractor-tartare'),
tartareOpts: {
reporter: 'gherkin',
timeout: 15000
}
};
You can use any Tartare option as described in the Tartare documentation.
For more details about using the Tartare framework with Protractor, go here.
For general information about writing tests with Tartare read the full documentation.