node-ava 5.3.1+dfsg+~cs46.3.10-3 source package in Ubuntu

Changelog

node-ava (5.3.1+dfsg+~cs46.3.10-3) unstable; urgency=medium

  * Team upload
  * Build commonjs for p-event

 -- Bastien Roucariès <email address hidden>  Fri, 03 Nov 2023 23:09:24 +0000

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
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-ava_5.3.1+dfsg+~cs46.3.10-3.dsc 7.5 KiB 23875b88b2e557d1cc3348108d40c5544fa2f98d8927918750f2f3104602d384
node-ava_5.3.1+dfsg+~cs46.3.10.orig-arrgv.tar.xz 3.6 KiB 9311a5670786492429196305a64dfec0223d0ee11ff479e41ecf0e508074dbc0
node-ava_5.3.1+dfsg+~cs46.3.10.orig-ava-typescript.tar.xz 11.3 KiB b35fcf9797e8ad8090437a0afce8d3fff3beff20296846fc09c23858981720c8
node-ava_5.3.1+dfsg+~cs46.3.10.orig-chunkd.tar.xz 42.1 KiB 524d284ec138016e10c5779a56da14d72d74e6b48fdca2c891cab54aee7422ba
node-ava_5.3.1+dfsg+~cs46.3.10.orig-ci-parallel-vars.tar.xz 23.0 KiB c6a115fc48b6a162573c31a14e3277795b778211ce6e13550142c855496426a7
node-ava_5.3.1+dfsg+~cs46.3.10.orig-code-excerpt.tar.xz 3.0 KiB 8a65e8b6aedb3a742b77fd72bc4d1917a8dfbd4b016a8f23f855b8d67156f1fd
node-ava_5.3.1+dfsg+~cs46.3.10.orig-common-path-prefix.tar.xz 2.5 KiB 2ed4d0b8debf226f6a9804b4a471e4269e255bb480dc56c78671000a02ffabc2
node-ava_5.3.1+dfsg+~cs46.3.10.orig-convert-to-spaces.tar.xz 2.4 KiB 9c1e66b3383924edd39133e3dd6a49a0616557259a89df1ac0e3978a7d4eb424
node-ava_5.3.1+dfsg+~cs46.3.10.orig-is-error.tar.xz 2.6 KiB 271a3f488627dc124b2299b5f2d163e71774a8f232ec14753ccab25084679779
node-ava_5.3.1+dfsg+~cs46.3.10.orig-p-event.tar.xz 8.5 KiB 2a3c2ad9425b11153ebd2542392a626e0141d1a30bb76ef0db6408b051f77bef
node-ava_5.3.1+dfsg+~cs46.3.10.orig-pkg-conf.tar.xz 4.1 KiB 1e4925d2a98c976058e1523066f40860c65e3ec34e2d68707cd52ef8289ddfc8
node-ava_5.3.1+dfsg+~cs46.3.10.orig-serialize-error.tar.xz 8.2 KiB 8a011a5218aa41ed7e51936c1d2ae4fe2bc2e5628c43f4714b892a853ba69c11
node-ava_5.3.1+dfsg+~cs46.3.10.orig-supertap.tar.xz 12.1 KiB b7f811f0ac0fbb2edaabf388a6b1cae6544ddce9d7485a4cdb3ee4a22bc4289b
node-ava_5.3.1+dfsg+~cs46.3.10.orig-temp-dir.tar.xz 2.8 KiB cd5cb91c020c901abaa890587e31ea3d792b6442086486fe1788b5f7ada6bcec
node-ava_5.3.1+dfsg+~cs46.3.10.orig.tar.xz 725.3 KiB 3e9c543e8bab93993d005d123e1731a40f7ed9ba8c681db7944a3a9cc4f8aea8
node-ava_5.3.1+dfsg+~cs46.3.10-3.debian.tar.xz 8.4 KiB bfee58ea36e1d2839145a0b4aa2cc3e8a50ba08559dc025fd33df3ec47123413

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.