Skip to content

Instantly share code, notes, and snippets.

@nicosommi
Last active August 29, 2015 14:23
Show Gist options
  • Save nicosommi/acfcdaaf44590a239bfc to your computer and use it in GitHub Desktop.
Save nicosommi/acfcdaaf44590a239bfc to your computer and use it in GitHub Desktop.
var encrypt = require("travis-encrypt");
describe("travis-encrypt", function testTravisEncrypt() {
it("should work with travis with just three arguments", function testWithThreeArgs(done) {
encrypt("FreeAllMedia/jargon", "EXAMPLE_ENV_VARIABLE=asdf",
function encryptCallback(err, blob) {
done();
}
);
});
});
{
"name": "travis-encrypt-error",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "nicosommi",
"license": "ISC",
"dependencies": {
"travis-encrypt": "^1.1.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment