mirror of
https://github.com/glittercowboy/get-shit-done
synced 2026-04-25 17:25:23 +02:00
* refactor(tests): standardize to node:assert/strict and t.after() per CONTRIBUTING.md
- Replace require('node:assert') with require('node:assert/strict') across
all 73 test files to enforce strict equality (no type coercion)
- Replace try/finally cleanup blocks with t.after() hooks in core.test.cjs
and hooks-opt-in.test.cjs per the test lifecycle standards
- Utility functions in codex-config and security-scan retain try/finally
as that is appropriate for per-function resource guards, not lifecycle hooks
Closes #1674
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* perf(tests): add --test-concurrency=4 to test runner for parallel file execution
Node.js --test-concurrency controls how many test files run as parallel child
processes. Set to 4 by default, configurable via TEST_CONCURRENCY env var.
Fixes tests at a known level rather than inheriting os.availableParallelism()
which varies across CI environments.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* fix(security): allowlist verify.test.cjs in prompt-injection scanner
tests/verify.test.cjs uses <human>...</human> as GSD phase task-type
XML (meaning "a human should verify this step"), which matches the
scanner's fake-message-boundary pattern for LLM APIs. This is a
false positive — add it to the allowlist alongside the other test files
that legitimately contain injection-adjacent patterns.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
71 lines
3.1 KiB
JavaScript
71 lines
3.1 KiB
JavaScript
const { test, describe } = require('node:test');
|
|
const assert = require('node:assert/strict');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
describe('pause-work improvements', () => {
|
|
let pauseContent;
|
|
|
|
test('pause-work.md exists', () => {
|
|
const p = path.join(__dirname, '..', 'get-shit-done', 'workflows', 'pause-work.md');
|
|
assert.ok(fs.existsSync(p));
|
|
pauseContent = fs.readFileSync(p, 'utf-8');
|
|
});
|
|
|
|
test('#1489: pause-work detects non-phase contexts (spike, deliberation, research)', () => {
|
|
pauseContent = pauseContent || fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'pause-work.md'), 'utf-8'
|
|
);
|
|
assert.ok(pauseContent.includes('spike') || pauseContent.includes('Spike'),
|
|
'pause-work should handle spike context');
|
|
assert.ok(pauseContent.includes('deliberation') || pauseContent.includes('research'),
|
|
'pause-work should handle deliberation/research context');
|
|
});
|
|
|
|
test('#1489: pause-work writes to non-phase paths when appropriate', () => {
|
|
pauseContent = pauseContent || fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'pause-work.md'), 'utf-8'
|
|
);
|
|
assert.ok(pauseContent.includes('.planning/.continue-here') ||
|
|
pauseContent.includes('.planning/spikes') ||
|
|
pauseContent.includes('non-phase'),
|
|
'pause-work should write to root .planning/ when not in a phase');
|
|
});
|
|
|
|
test('#1490: continue-here template includes required-reading section', () => {
|
|
pauseContent = pauseContent || fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'pause-work.md'), 'utf-8'
|
|
);
|
|
assert.ok(pauseContent.includes('Required Reading') || pauseContent.includes('required-reading'),
|
|
'Template should include Required Reading section');
|
|
});
|
|
|
|
test('#1490: continue-here template includes anti-patterns section', () => {
|
|
pauseContent = pauseContent || fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'pause-work.md'), 'utf-8'
|
|
);
|
|
assert.ok(pauseContent.includes('Anti-Pattern') || pauseContent.includes('anti-pattern') ||
|
|
pauseContent.includes('do NOT repeat'),
|
|
'Template should include Anti-Patterns section');
|
|
});
|
|
|
|
test('#1490: continue-here template includes infrastructure-state section', () => {
|
|
pauseContent = pauseContent || fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'pause-work.md'), 'utf-8'
|
|
);
|
|
assert.ok(pauseContent.includes('Infrastructure') || pauseContent.includes('infrastructure'),
|
|
'Template should include Infrastructure State section');
|
|
});
|
|
|
|
test('#1487: pause-work documents pre-execution critique gate', () => {
|
|
pauseContent = pauseContent || fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'pause-work.md'), 'utf-8'
|
|
);
|
|
assert.ok(
|
|
pauseContent.includes('critique') || pauseContent.includes('design gate') ||
|
|
pauseContent.includes('Pre-Execution'),
|
|
'pause-work should document design critique gate for design→execution transitions'
|
|
);
|
|
});
|
|
});
|