fix(build): migrate project config and tests to updated git.zone tooling

This commit is contained in:
2026-04-30 08:19:54 +00:00
parent fc00655cef
commit e2779928f4
21 changed files with 792 additions and 2739 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { tap, expect } from '@git.zone/tstest/tapbundle';
import * as lik from '../ts/index.js';
let testAsyncExecutionStack: lik.AsyncExecutionStack;
@@ -27,7 +27,7 @@ tap.test('should run in parallel', async (toolsArg) => {
});
// Test default non-exclusive has no concurrency limit property (Infinity)
tap.test('default non-exclusive has no concurrency limit', () => {
tap.test('default non-exclusive has no concurrency limit', async () => {
const stack = new lik.AsyncExecutionStack();
// default maxConcurrency is Infinity (not finite)
expect(Number.isFinite(stack.getNonExclusiveMaxConcurrency())).toBeFalse();