Skip to content

Instantly share code, notes, and snippets.

@OrganicPanda
OrganicPanda / mouse-plugin.js
Created July 28, 2016 16:06
Track the mouse position in Protractor
// Hook in to `addEventListener` to track the mouse and display it as a circle
exports.onPageLoad = function() {
return browser.executeScript(function() {
(function() {
var EventSniffer = function() {
this.history = [];
this.callbacks = {};
this.minCacheSize = 100;
this.maxCacheSize = 500;
};
#!/bin/bash
brew uninstall node
brew prune
sudo rm -rf $HOME/{local,lib,include,node*,npm,.npm*}
sudo rm -rf /usr/local/lib/node*
sudo rm -rf /usr/local/include/node*
sudo rm -rf /usr/local/bin/{node,npm}
sudo rm -rf /usr/local/share/man/man1/node.1

Pure360 React Tech Test

Create a SPA that:

  • Displays list of emails
  • Allows the user to see a preview of each email. The user should be able to toggle the HTML and plain versions
    • HTML version is rendered correctly with styles
    • Plain version is rendered raw with line breaks preserved
  • Has unit tests

Pure360 Angular Tech Test

Create a SPA that:

  • Displays list of emails
  • Allows the user to see a preview of each email. The user should be able to toggle the HTML and plain versions
    • HTML version is rendered correctly with styles
    • Plain version is rendered raw with line breaks preserved
  • Has unit tests