1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Source: node-rewire
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Nilesh Patra <nilesh@debian.org>
Testsuite: autopkgtest-pkg-nodejs
Build-Depends:
debhelper-compat (= 13)
, dh-sequence-nodejs
, node-eslint <!nocheck>
, node-mocha <!nocheck>
, node-expect.js <!nocheck>
, coffeescript <!nocheck>
Standards-Version: 4.6.1
Homepage: https://github.com/jhnns/rewire
Vcs-Git: https://salsa.debian.org/js-team/node-rewire.git
Vcs-Browser: https://salsa.debian.org/js-team/node-rewire
Rules-Requires-Root: no
Package: node-rewire
Architecture: all
Depends:
${misc:Depends}
, node-eslint
Description: Easy monkey-patching for node.js unit tests
rewire adds a special setter and getter to modules making it
possible to modify their behaviour for better unit testing.
It provides functionality for
.
+ inject mocks for other modules or globals like process
+ inspect private variables
+ override variables within the module.
.
Node.js is an event-based server-side JavaScript engine.
|