diff --git a/package.json b/package.json index cb01066..aa7f2d4 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "repository": "https://github.com/Alhadis/Atom-Mocha", "license": "ISC", "bin": "./bin/atom-mocha", + "atomTestRunner": "./bin/atom-mocha", "engines": { "atom": ">1.6.0" }, diff --git a/spec/basic-spec.js b/spec/basic-spec.js new file mode 100644 index 0000000..555835e --- /dev/null +++ b/spec/basic-spec.js @@ -0,0 +1,13 @@ +"use strict"; + + +describe("This package", function(){ + + it("rubs the lotion on its skin, or else", function(){ + 2..should.equal(2); // In this universe, it'd damn well better + }); + + it("gets the hose again", function(){ + this.should.be.extensible.and.ok; // Eventually + }); +});