1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

DEP 0003 -- Added JavaScript unit tests.

Setup QUnit, added tests, and measured test coverage.

Thanks to Nick Sanford for the initial tests.
This commit is contained in:
Trey Hunner
2015-04-14 10:55:57 -04:00
committed by Tim Graham
parent 3bbaf84d65
commit 2d0dead224
19 changed files with 4716 additions and 2 deletions

View File

@@ -2,9 +2,13 @@
"name": "Django",
"private": true,
"scripts": {
"pretest": "eslint django/"
"pretest": "eslint django/",
"test": "grunt test --verbose"
},
"devDependencies": {
"eslint": "^0.22.1"
"eslint": "^0.22.1",
"grunt": "^0.4.5",
"grunt-blanket-qunit": "^0.2.0",
"grunt-cli": "^0.1.13"
}
}