I hereby claim:
- I am joechapman on github.
- I am joechapman (https://keybase.io/joechapman) on keybase.
- I have a public key whose fingerprint is 24FB 6F32 E4B7 563D 4A23 E326 BA46 BF23 000C 73AE
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Step 1: remove all history | |
rm -rf .git | |
Step 2: reconstruct the Git repo with only the current content | |
git init | |
git add . | |
git commit -m "Initial commit" |
proxy=http://proxy[domain]:[port] | |
https_proxy=http://proxy[domain]:[port] |
var spy = spyOn(obj, "method").andCallFake(function () { | |
return true; | |
}); |
spy.andReturn(false); |
//.....rest of code here | |
afterEach(function () { | |
Backbone.Events.off(); | |
}); | |
//...rest of code here |
$ git config –-global alias.st status |
[alias] | |
st = status | |
ci = commit | |
br = branch | |
co = checkout |
mockObject = { | |
render: function () {}, | |
remove: function () {} | |
} |
expect(spyTrigger).toHaveBeenCalledWith("eventName", [args]); |