node-ava 5.1.0+dfsg+~cs44.2.10-1 source package in Ubuntu

Changelog

node-ava (5.1.0+dfsg+~cs44.2.10-1) unstable; urgency=medium

  * New upstream version 5.1.0+dfsg+~cs44.2.10

 -- Yadd <email address hidden>  Tue, 22 Nov 2022 16:34:04 +0100

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-ava_5.1.0+dfsg+~cs44.2.10-1.dsc 7.4 KiB b7589210482b4e9dbb2f69336cbe1ceaf518213ed1263d16dffa086316b1125f
node-ava_5.1.0+dfsg+~cs44.2.10.orig-arrgv.tar.xz 3.6 KiB 49f5f61768fd830159f3f2f01fe65f5e21a7c0950e3eade3b1d6def068dbb594
node-ava_5.1.0+dfsg+~cs44.2.10.orig-ava-typescript.tar.xz 10.0 KiB e3b547bc99039687f470cd4887343fc5e0258223b71f3a150723385ea99e8b47
node-ava_5.1.0+dfsg+~cs44.2.10.orig-chunkd.tar.xz 42.1 KiB 2bbcb6ce5d48d0e20f99cf73db91c46f5a0b406b1314b0b09aa9437e6f603be7
node-ava_5.1.0+dfsg+~cs44.2.10.orig-ci-parallel-vars.tar.xz 22.9 KiB 854a89e096f2ba845cc016ec5d1fdb693077f0c3e61a4df5ef0d454c0979cec2
node-ava_5.1.0+dfsg+~cs44.2.10.orig-code-excerpt.tar.xz 3.0 KiB c5e7c0a179ade472b90dff87dc09425cec0335ff274f2432f4acfbc9b67651a8
node-ava_5.1.0+dfsg+~cs44.2.10.orig-common-path-prefix.tar.xz 2.5 KiB 9cb3f625520091a52bc46188734626bd70d4c51fffd46c5f20d19f837cf41c07
node-ava_5.1.0+dfsg+~cs44.2.10.orig-convert-to-spaces.tar.xz 2.4 KiB 61653d40f7b3d95345cdad5e84526751722373f5958f1e4afd038975c88c20f1
node-ava_5.1.0+dfsg+~cs44.2.10.orig-is-error.tar.xz 2.6 KiB 71b9b49001bdf714048b33ec3be675273b37fde163543521798fdf1c9c995e76
node-ava_5.1.0+dfsg+~cs44.2.10.orig-p-event.tar.xz 8.0 KiB 1b906a804a7dd13d852b1ac8657d7f9f4c126fb2c2abe8bef4d08957b48d560a
node-ava_5.1.0+dfsg+~cs44.2.10.orig-pkg-conf.tar.xz 4.1 KiB ee1c9829fad6eb498293e9fdeb34c5f58a29ee267e64e915097c0491da781bc9
node-ava_5.1.0+dfsg+~cs44.2.10.orig-serialize-error.tar.xz 7.8 KiB 51b4abfe734a4a16a2b078fff28411091504c19c5a2e6706e57f24ace4b3c4fb
node-ava_5.1.0+dfsg+~cs44.2.10.orig-supertap.tar.xz 12.1 KiB 966718e0c9fbf7ea071cd19ad3788bddca356e31e847e3b83a656d6681f6a9b8
node-ava_5.1.0+dfsg+~cs44.2.10.orig-temp-dir.tar.xz 2.8 KiB 1524f8b233e92543da99d361985bc92c07a08b8eba3fd0539aea6326a82fc75b
node-ava_5.1.0+dfsg+~cs44.2.10.orig.tar.xz 718.8 KiB 51d97003b642e37d516b362f872904462fb992f476ee0bf446dee654640eaeca
node-ava_5.1.0+dfsg+~cs44.2.10-1.debian.tar.xz 8.6 KiB 6052c576c8b718d823aee20aa499ca5a5c0d3378ed2883fa62c81aa0916da752

No changes file available.

Binary packages built by this source

ava: Futuristic test runner 🚀

 Even though JavaScript is single-threaded, IO in Node.js can happen in
 parallel due to its async nature. AVA takes advantage of this and runs your
 tests concurrently, which is especially beneficial for IO heavy tests. In
 addition, test files are run in parallel as separate processes, giving you
 even better performance and an isolated environment for each test file.
 .
 Switching from Mocha to AVA in Pageres brought the test time down from 31 to
 11 seconds. Having tests run concurrently forces you to write atomic tests,
 meaning tests don't depend on global state or the state of other tests, which
 is a great thing!
 .
 Node.js is an event-based server-side JavaScript engine.