How to setup Selenium proxy?
Hi Richard!
To set up Selenium proxy, you can refer to the below code snippet.
var assert = require('assert');
describe('IndexArray', function() {
describe('#checkIndex negative()', function() {
it('the function should return -1 when the value is not present', function(){
assert.equal(-1, [4,5,6].indexOf(7));
});
});
});