From 6bc33b9d23a7fb604982877229f43fc74b434d2d Mon Sep 17 00:00:00 2001 From: Lauren ten Hoor <32955832+laurentenhoor@users.noreply.github.com> Date: Tue, 10 Feb 2026 08:28:02 +0800 Subject: [PATCH] fix: use assert instead of expect in test file (#30) --- lib/tools/queue-status.test.ts | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/lib/tools/queue-status.test.ts b/lib/tools/queue-status.test.ts index 9ce72ee..426b020 100644 --- a/lib/tools/queue-status.test.ts +++ b/lib/tools/queue-status.test.ts @@ -1,59 +1,55 @@ /** * Tests for queue-status execution-aware sequencing logic + * Run with: node --test lib/tools/queue-status.test.ts */ -import { describe, it, expect } from "node:test"; - -// Import the functions we want to test -// Note: Since these are internal functions, we'd need to export them or test through the public API -// For now, we'll document the expected behavior +import { describe, it } from "node:test"; +import assert from "node:assert"; describe("queue_status execution-aware sequencing", () => { describe("priority ordering", () => { it("should prioritize To Improve > To Test > To Do", () => { // To Improve has priority 3, To Test has 2, To Do has 1 - expect(3).toBeGreaterThan(2); - expect(2).toBeGreaterThan(1); + assert.strictEqual(3 > 2, true); + assert.strictEqual(2 > 1, true); }); }); describe("role assignment", () => { it("should assign To Improve to dev", () => { // To Improve = dev work - expect(true).toBe(true); + assert.ok(true); }); it("should assign To Do to dev", () => { // To Do = dev work - expect(true).toBe(true); + assert.ok(true); }); it("should assign To Test to qa", () => { // To Test = qa work - expect(true).toBe(true); + assert.ok(true); }); }); describe("execution modes", () => { it("should support parallel project execution", () => { // Projects can run simultaneously - expect(true).toBe(true); + assert.ok(true); }); it("should support sequential project execution", () => { // Only one project at a time - expect(true).toBe(true); + assert.ok(true); }); it("should support parallel role execution within project", () => { // DEV and QA can run simultaneously - expect(true).toBe(true); + assert.ok(true); }); it("should support sequential role execution within project", () => { // DEV and QA alternate - expect(true).toBe(true); + assert.ok(true); }); }); }); - -console.log("Tests defined - run with: node --test lib/tools/queue-status.test.ts");