This file contains 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
Thanks, you're added. Please follow these rules: | |
* never commit directly to master unless you're only editing documentation, or you're in the process of cutting a new release. | |
* never merge your own pull request unless it's had no comments from any collaborators for at least 24 hours. | |
* If you cut a new release, make sure you follow semver when updating the version number. | |
If you let me know your npm username I'll add you as an owner so you can release new versions :) | |
This file contains 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
var example = require('./example-component'); | |
example(); |
This file contains 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
var databaseCerts, databaseCertsSpy, overrideConfig, rewire; | |
rewire = require('rewire'); | |
databaseCerts = function() {}; | |
databaseCertsSpy = { | |
databaseCerts: databaseCerts | |
}; |