mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-07 11:30:55 +03:00
0c252fb687
refs #2622, refs #1340 - added documentation to grunt tasks which will replace the wiki page, including reordering the tasks to make the documentation easier to read - removed grunt changelog which is no longer used - merged jshint:shared into jshint:server - cleanup of quote marks, formatting, line lengths etc - also fixed the incorrect version number for grunt-docker - added route tests to coverage
9 lines
309 B
JavaScript
9 lines
309 B
JavaScript
var blanket = require("blanket")({
|
|
"pattern": ["/core/server/", "/core/client/", "/core/shared/"],
|
|
"data-cover-only": ["/core/server/", "/core/client/", "/core/shared/"]
|
|
}),
|
|
requireDir = require("require-dir");
|
|
|
|
requireDir("./unit");
|
|
requireDir("./integration");
|
|
requireDir("./functional/routes"); |