37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
|
|
import { createIsolatedEnv, type IsolatedEnv } from '../helpers/isolated-env';
|
|
import { runTakt } from '../helpers/takt-runner';
|
|
import { createLocalRepo, type LocalRepo } from '../helpers/test-repo';
|
|
|
|
// E2E更新時は docs/testing/e2e.md も更新すること
|
|
describe('E2E: Clear sessions command (takt clear)', () => {
|
|
let isolatedEnv: IsolatedEnv;
|
|
let repo: LocalRepo;
|
|
|
|
beforeEach(() => {
|
|
isolatedEnv = createIsolatedEnv();
|
|
repo = createLocalRepo();
|
|
});
|
|
|
|
afterEach(() => {
|
|
try { repo.cleanup(); } catch { /* best-effort */ }
|
|
try { isolatedEnv.cleanup(); } catch { /* best-effort */ }
|
|
});
|
|
|
|
it('should clear sessions without error', () => {
|
|
// Given: a local repo with isolated env
|
|
|
|
// When: running takt clear
|
|
const result = runTakt({
|
|
args: ['clear'],
|
|
cwd: repo.path,
|
|
env: isolatedEnv.env,
|
|
});
|
|
|
|
// Then: exits cleanly
|
|
expect(result.exitCode).toBe(0);
|
|
const output = result.stdout.toLowerCase();
|
|
expect(output).toMatch(/clear|session|removed|no session/);
|
|
});
|
|
});
|