Run test suite

Run test suite in JavaScript — with the four heights of help laid out: do it now, make it easier for the next person to accept, work out the right move when you are stuck, and learn the pattern so it stops coming back.

4prompt heights
Open it in the interactive atlas →

The four heights

The same task, four distances: today's deadline, the next reviewer, the stuck moment, the pattern.

Execute — do the immediate task

+
The test suite on the CI failed on the feature branch; run the full tests locally, fix obvious unit…
The test suite on the CI failed on the feature branch; run the full tests locally, fix obvious unit failures, and re-run until everything passes. Start with the failing test file test/auth.test.js and finish by running npm test to produce a clean green run on my machine by end of day.

Improve — make it easier to accept

+
Before I push this branch to the shared pipeline, make it easy for reviewers to verify test…
Before I push this branch to the shared pipeline, make it easy for reviewers to verify test coverage and recent failures -- surface the failing test names and stack traces up top, list any mocked network calls, and flag tests that take longer than 500ms. Also suggest which failures look flaky versus real.

Decide — diagnose the stuck moment

+
I ran the auth flow locally and one integration test failed after passing yesterday; the failure…

A single integration test just started failing on my machine

I ran the auth flow locally and one integration test failed after passing yesterday; the failure happens in test/auth.integration.js when it times out at the login POST. I don't know whether a recent mock change, my local environment, or a genuine regression caused it. Which likely source should I check first and what concrete next step will isolate whether the timeout is environmental or code-related?

Become — change the pattern

+
Over the last three sprints I keep losing time debugging tests that fail only on my machine or in…

Tests intermittently fail on branches before merge

Over the last three sprints I keep losing time debugging tests that fail only on my machine or in CI windows; I waste hours reproducing flaky network mocks and slow fixtures. Where am I most likely creating fragility and what habit should I change to reduce these firefights going forward?

Next to this one

Other programming language work people do in JavaScript.

Every task here came from the work, not from a feature list — which is why the prompts name what you want done and never the button that does it. The tool changes; the work does not.
Copyright © LLOS.ai · 2026 — original pedagogy, voice, and design — all rights reserved.

The rest of the map

Same library, five ways in.