Create an example that includes tests and how to run them. #122 (#130)

This commit is contained in:
Mykyta Khmel
2016-12-01 01:09:28 +02:00
committed by Kumar McMillan
parent 01181a350b
commit 395786e353
19 changed files with 214 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"name": "mocha-tests-webextension",
"version": "1.0.0",
"description": "Run test inside your addon",
"main": "background.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MPL-2.0",
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^3.1.2"
}
}