This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # [http://jasmine.github.io/](Jasmine) | |
| ## Suites describe your tests | |
| - Global Jasmine function `describe` accepts 2 parameters: `string`, `function`. String is name or title for a spec suite, usually what is being tested. Function is block of code that implements the suite. | |
| ## Specs | |
| - Specs are defined by calling the global Jasmine function `it`, which accepts a `string` and `function`. String is a title for this spec and the function is the spec or test. A spec contains one more more expectations that test the state of the code under test. | |
| ## Expectations | |
| - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // Optimizely | |
| // Variant Testing for New Homepage | |
| // | |
| //----------------------------------------------------------------------------- | |
| // 1. 3 Circle DM Consult A (Sign Up Beginning) | |
| //----------------------------------------------------------------------------- | |
| // Toggle module |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <!-- Generated by: TmTheme-Editor --> | |
| <!-- ============================================ --> | |
| <!-- Created by: Shakeel Mohamed ShakeelMohamed.com --> | |
| <!-- Based on Monokai vivid with: Monokai's selection color, Monokai Gray's background color, and colored JSON. --> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>name</key> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Git | |
| 1. I'm on master | |
| 2. git fetch | |
| 3. git pull origin master | |
| 4. git checkout -b BRANCH_NAME origin/master | |
| 5. git push -u origin BRANCH_NAME | |
| git remote show origin | |
| vim ~/.gitconfig |
OlderNewer