// Note: ES6 syntax requires a version of Node.js >= 4.0.0 | |
'use strict'; | |
let tags = require('./protractor-mocha-tags')(); | |
exports.config = { | |
framework: 'mocha', | |
capabilities: { browserName: 'chrome' }, | |
specs: ['tests/**/*.spec.js'], | |
mochaOpts: { | |
reporter: 'spec', | |
grep: tags | |
} | |
}; |
// Note: ES6 syntax requires a version of Node.js >= 4.0.0 | |
'use strict'; | |
describe('Some Feature/Page #feature1', function() { | |
it('should do some thing #slow', () => { | |
// assertions | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment