How do I setup Selenium proxy using Jest framework?

How do I setup Selenium proxy using Jest framework ?

Hi Brett!

To setup Selenium proxy in Jest framework, 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));
});
});
});