Skip to content

Instantly share code, notes, and snippets.

View rossPatton's full-sized avatar
🌹
software engineer for social good

Ross rossPatton

🌹
software engineer for social good
View GitHub Profile

Keybase proof

I hereby claim:

  • I am rosspatton on github.
  • I am rospat (https://keybase.io/rospat) on keybase.
  • I have a public key ASB8Ewx5-ULoPqYtdtVaP2GpFM-1Td5IapvjgoGKauUTTgo

To claim this, I am signing this object:

'use strict'
/**
* api docs: http://webdriver.io/api.html
* config: wdio.conf.js
*/
/**
* @description run mocha unit tests against a multi program report
* in review mode, so we can check codeMirror, QA links, etc
exports.config = {
// =====================
// Server Configurations
// =====================
// Host address of the running Selenium server. This information is usually obsolete as
// WebdriverIO automatically connects to localhost. Also if you are using one of the
// supported cloud services like Sauce Labs, Browserstack or Testing Bot you also don't
// need to define host and port information because WebdriverIO can figure that our
// according to your user and key information. However if you are using a private Selenium
// backend you should define the host address, port, and path here.
@rossPatton
rossPatton / gist:1fc476950f95dc5b9b09
Last active August 29, 2015 14:22
Scroll like a king
module.exports = function domUpdate( app ): Object {
if ( typeof app !== 'object' ) { return; }
// recursion recursion recursion
// we pass in the FSB stuff to make sure we're
// using the latest cache stuff
raf(() => {
return app.domUpdate( app );
});