Skip to content

Instantly share code, notes, and snippets.

@conner
conner / gist:cea2c8f2f912ab22eee6
Created March 13, 2015 15:49
Github Diff: Remove Godeps and Tests
javascript:(function(){$("#files_bucket").find("[data-path^=Godep], [data-path$=test\\.go]").parent().remove()})();
@conner
conner / gist:6e2fc6e72fb49101b541
Created March 13, 2015 15:46
Github Diff: Remove Godeps
javascript:(function(){$("#files_bucket").find("[data-path^=Godep]").parent().remove()})();
@conner
conner / example.conf.js
Created May 27, 2014 21:01
defining global jasmine matchers in protractor
// --- from protractor conf.js
onPrepare: function() {
beforeEach(function() {
// things to do before every run
this.addMatchers({
customMatcher: function() {
// custom matcher codez
}