Skip to content

Instantly share code, notes, and snippets.

@sveneh
Last active August 27, 2015 10:08
Show Gist options
  • Save sveneh/9c589d321e6fc31f7460 to your computer and use it in GitHub Desktop.
Save sveneh/9c589d321e6fc31f7460 to your computer and use it in GitHub Desktop.
Protractor fails a pending spec
{
"spec_dir": ".",
"spec_files": [
"pending.spec.js"
],
"helpers": [
"helpers/**/*.js"
]
}
exports.config = {
framework: 'jasmine2',
specs: [
'pending.spec.js'
],
};
describe('a spec with pending', function() {
it('should be pending', function() {
pending('This is pending.');
});
xit('should be also pending', function() {
expect(true).toBe(true);
});
});
@sveneh
Copy link
Author

sveneh commented Aug 27, 2015

put jasmine.json in spec/support

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment