Asynct is a minimal async test runner for Node.js, version 1.1.0. It was designed for simplicity, allowing tests to be run in series or parallel with a simple callback-based API. However, it is no longer maintained and lacks features like assertion libraries, test filtering, or reporters. Alternative modern test frameworks like Mocha, Ava, or Jest are recommended for most use cases.
npm install asynctNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows basic test definition and execution using asynct's test and run functions.
Use Mocha, Ava, or Jest instead.
Use a separate assertion library like assert or chai.
Use run({ series: true }) for sequential execution.Use const asynct = require('asynct'); then asynct.test(...) or destructure.Add const { run } = require('asynct'); and run(); at the end.No dependency data recorded yet.