diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..f1250e5 --- /dev/null +++ b/.npmignore @@ -0,0 +1,4 @@ +support +test +examples +*.sock diff --git a/History.md b/History.md new file mode 100644 index 0000000..c8aa68f --- /dev/null +++ b/History.md @@ -0,0 +1,5 @@ + +0.0.1 / 2010-01-03 +================== + + * Initial release diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4e9c8d3 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ + +test: + @./node_modules/.bin/mocha \ + --require should \ + --reporter spec + +.PHONY: test \ No newline at end of file diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..044c352 --- /dev/null +++ b/Readme.md @@ -0,0 +1,29 @@ + +# mocha-cloud + + Mocha tests in the cloud with Saucelabs + +## License + +(The MIT License) + +Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca> + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/index.js b/index.js new file mode 100644 index 0000000..892fa54 --- /dev/null +++ b/index.js @@ -0,0 +1,2 @@ + +module.exports = require('./lib/mocha-cloud'); \ No newline at end of file diff --git a/lib/mocha-cloud.js b/lib/mocha-cloud.js new file mode 100644 index 0000000..e69de29 diff --git a/package.json b/package.json new file mode 100644 index 0000000..afe79b1 --- /dev/null +++ b/package.json @@ -0,0 +1,13 @@ +{ + "name": "mocha-cloud", + "version": "0.0.1", + "description": "Mocha tests in the cloud with Saucelabs", + "keywords": [], + "author": "TJ Holowaychuk ", + "dependencies": {}, + "devDependencies": { + "mocha": "*", + "should": "*" + }, + "main": "index" +} \ No newline at end of file