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);
});
});