File: control

package info (click to toggle)
node-lolex 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 620 kB
  • sloc: makefile: 7; sh: 5
file content (33 lines) | stat: -rw-r--r-- 1,121 bytes parent folder | download
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
Source: node-lolex
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Sruthi Chandran <srud@disroot.org>
Build-Depends:
 debhelper (>= 11)
 , dh-buildinfo
 , nodejs
 , mocha
 , node-sinon
# , node-referee
 , node-lodash
 , node-samsam
Standards-Version: 4.1.3
Homepage: http://github.com/sinonjs/lolex
Vcs-Git: https://anonscm.debian.org/git/pkg-javascript/node-lolex.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-javascript/node-lolex.git

Package: node-lolex
Architecture: all
Depends:
 ${misc:Depends}
 , nodejs
Description: Fake JavaScript timers
 JavaScript implementation of the timer APIs; setTimeout, clearTimeout, 
 setImmediate, clearImmediate, setInterval and clearInterval, along with a 
 clock instance that controls the flow of time. Lolex also provides a Date 
 implementation that gets its time from the clock.
 .
 Lolex can be used to simulate passing time in automated tests and other 
 situations where you want the scheduling semantics, but don't want to 
 actually wait. Lolex is extracted from Sinon.JS.