Skip to content

Instantly share code, notes, and snippets.

@patricksevat
Created November 20, 2019 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patricksevat/baa5deadfcd103dd735fb2e9124e4094 to your computer and use it in GitHub Desktop.
Save patricksevat/baa5deadfcd103dd735fb2e9124e4094 to your computer and use it in GitHub Desktop.
wdio conf with jasmine grep
// wdio.conf.js
exports.config = {
specs: ['spec/**/*.spec.ts'],
framework: 'jasmine',
jasmineNodeOpts: {
defaultTimeoutInterval: 60000,
grep: '#smoke',
invertGrep: false,
},
// ... other config
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment