Last active
February 29, 2016 22:09
-
-
Save DrewML/ad11884e0d84a90c4167 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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